blob: ad8b30ef7e586c0109034a83b7d9f32e11085620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
FROM 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
|