summaryrefslogtreecommitdiff
path: root/src/main/docker/debian-cxx.Dockerfile
blob: f29f16829bac77b2256fc7beb06074036b28ae15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Debian with C++ compiler.
#

ARG PARENT_IMAGE=debian:buster-20220622-slim
FROM $PARENT_IMAGE

RUN true \
    && apt update \
    && apt install -y --no-install-recommends \
         g++ make \
    && apt clean \
    && true

USER 1000:1000
WORKDIR /work
CMD ["sleep", "36000"]