Revert "fix: use buildpack-deps:bullseye instead of debian"

This reverts commit 7c8fc671f9.
This commit is contained in:
Amin Yahyaabadi 2021-09-18 12:31:46 -05:00
parent 7c8fc671f9
commit b08e31fb37
2 changed files with 4 additions and 2 deletions

View File

@ -134,10 +134,11 @@ Here is an example for using setup_cpp to make a builder image that has the cpp
```dockerfile
# debian
FROM buildpack-deps:bullseye
FROM debian:bullseye
# add setup_cpp
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 chmod +x ./setup_cpp_linux

View File

@ -1,8 +1,9 @@
# debian
FROM buildpack-deps:bullseye
FROM debian:bullseye
# add setup_cpp
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 chmod +x ./setup_cpp_linux