Merge pull request #1136 from duncannah/fix-docker-post-install

Fix Docker by copying post-install.js into image
This commit is contained in:
Cohee 2023-09-15 21:59:27 +03:00 committed by GitHub
commit 72c672c2c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ ENTRYPOINT [ "tini", "--" ]
WORKDIR ${APP_HOME}
# Install app dependencies
COPY package*.json ./
COPY package*.json post-install.js ./
RUN \
echo "*** Install npm packages ***" && \
npm install && npm cache clean --force