replace base image of development docker env from alpine to debian
This commit is contained in:
parent
6b9d5f570c
commit
6578757640
10
Dockerfile
10
Dockerfile
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user