aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Dockerfile.sonarcloud
blob: e1f40a7895714bcdcd75525ff494ad4980a1cc59 (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_18.x | sudo bash -

RUN apt update && apt-get install -y \
  nodejs \
  unzip

RUN make deps debug-tools