blob: edfe986a0b439e8e32b64925ad48b2c78960b1a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM --platform=linux/amd64 ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /workspace
COPY Makefile versions.cmake ./
COPY scripts scripts/
RUN apt update && apt-get install -y \
make \
sudo \
curl \
git
RUN curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
RUN apt update && apt-get install -y \
nodejs \
unzip
RUN make deps debug-tools
|