diff --git a/Dockerfile b/Dockerfile index 4cfe6f3..6d8872e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ FROM debian:stable-20220801-slim +RUN apt-get update && apt-get install -y \ + wget \ + tar \ + && rm -rf /var/lib/apt/lists/* + COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file