diff --git a/dockerfile b/dockerfile index 855915c..7246ef1 100644 --- a/dockerfile +++ b/dockerfile @@ -2,7 +2,7 @@ FROM node:21-slim # Install nginx -RUN apt-get update && apt-get install -y nginx +RUN apt-get update && apt-get install -y nginx wget python3 python3-pip ARG BUILD_DATE @@ -15,6 +15,8 @@ LABEL \ WORKDIR /app +RUN pip3 install --break-system-packages https://git.cronocide.net/Cronocide/headercheckdashboardproxy/archive/master.zip + COPY package.json . RUN npm i @@ -41,4 +43,4 @@ EXPOSE 4173 RUN chmod +x /app/docker-entrypoint.sh ENTRYPOINT ["/app/docker-entrypoint.sh"] -CMD ["sh", "-c", "npm run build && nginx -g 'daemon off;'"] \ No newline at end of file +CMD ["sh", "-c", "npm run build && nginx -g 'daemon off;'"]