aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile.dev
blob: 43a0c4555b7c612f64eca4466a3b9c9dfebea1b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /hicn-build

COPY Makefile versions.cmake ./
COPY scripts scripts/

RUN apt update && apt-get install -y \
  make \
  sudo \
  curl \
  valgrind \
  git

RUN make deps debug-tools

ENV DEBIAN_FRONTEND=