replace base image of development docker env from alpine to debian

This commit is contained in:
falsycat 2023-07-15 08:25:58 +09:00
parent 6b9d5f570c
commit 6578757640

View File

@ -1,10 +1,12 @@
FROM alpine:3.14
FROM debian:unstable-slim
RUN apk add --no-cache \
RUN apt update && apt install -y --no-install-recommends \
ca-certificates \
cmake \
gdb \
git \
g++ \
make
g++-13 \
make \
&& apt -y clean && rm -rf /var/lib/apt/lists/*
WORKDIR /repo