Fixed file permissions

This commit is contained in:
Morten Olsen
2021-12-18 18:51:18 +01:00
parent ecf382b486
commit 3b5dbb0c15
3 changed files with 6 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ RUN yarn bundle
FROM node:alpine
COPY entry.sh /entry.sh
RUN chmod 711 /entry.sh && apk update && apk add git
RUN chmod 755 /entry.sh && apk update && apk add git
COPY --from=BuildEnv /app/dist /app
CMD ["schedule"]
ENTRYPOINT ["/entry.sh"]