aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile.dev
blob: 9c96193a938630e2be894f6d162e2cabe40ca560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 \
  git

RUN make deps debug-tools

ENV DEBIAN_FRONTEND=