fix: install packages wget & tar too

This commit is contained in:
Erica Marigold 2023-07-20 17:09:59 +05:30 committed by GitHub
parent 80e15fe45e
commit cbca75ea95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ RUN cargo build --release
# Copy the binary into a new container for a smaller docker image
FROM debian:buster-slim
RUN USER=root apt-get update && apt-get install build-essential -y
RUN USER=root apt-get update && apt-get install wget tar build-essential -y
RUN wget -4c https://ftp.gnu.org/gnu/glibc/glibc-2.29.tar.gz
RUN tar -zxvf glibc-2.29.tar.gz