diff --git a/Dockerfile b/Dockerfile index 7ef25f5..fc5f6ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends adduser && \ COPY ${TARGETPLATFORM}/CBZOptimizer ${APP_PATH} -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y --no-install-recommends \ inotify-tools \ bash \ + ca-certificates \ bash-completion && \ rm -rf /var/lib/apt/lists/* && \ chmod +x ${APP_PATH} && \