fix missing wget package
Some checks failed
Publish Docker Image / docker (push) Failing after 28s

This commit is contained in:
Lee 2023-07-12 14:24:42 +01:00
parent 4d8ea7f95b
commit e14f155945

@ -3,6 +3,7 @@ FROM node:lts-slim
ENV NODE_ENV=production
WORKDIR /usr/src/app
RUN apt update
RUN apt install wget
# Copy package.json and package-lock.json separately to fully utilize Docker layer caching