mirror of https://github.com/aminya/setup-cpp
Revert "fix: use buildpack-deps:bullseye instead of debian"
This reverts commit 7c8fc671f9
.
This commit is contained in:
parent
7c8fc671f9
commit
b08e31fb37
|
@ -134,10 +134,11 @@ Here is an example for using setup_cpp to make a builder image that has the cpp
|
||||||
|
|
||||||
```dockerfile
|
```dockerfile
|
||||||
# debian
|
# debian
|
||||||
FROM buildpack-deps:bullseye
|
FROM debian:bullseye
|
||||||
|
|
||||||
# add setup_cpp
|
# add setup_cpp
|
||||||
WORKDIR "/"
|
WORKDIR "/"
|
||||||
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends wget
|
||||||
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
|
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
|
||||||
RUN chmod +x ./setup_cpp_linux
|
RUN chmod +x ./setup_cpp_linux
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
# debian
|
# debian
|
||||||
FROM buildpack-deps:bullseye
|
FROM debian:bullseye
|
||||||
|
|
||||||
# add setup_cpp
|
# add setup_cpp
|
||||||
WORKDIR "/"
|
WORKDIR "/"
|
||||||
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends wget
|
||||||
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
|
RUN wget "https://github.com/aminya/setup-cpp/releases/download/v0.2/setup_cpp_linux"
|
||||||
RUN chmod +x ./setup_cpp_linux
|
RUN chmod +x ./setup_cpp_linux
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue