add timezone to dockerfile

This commit is contained in:
brent 2020-09-08 10:41:29 -04:00
parent 4fdddc8c92
commit 87f2c5290f
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
FROM node:10-alpine
RUN apk add g++ make python
RUN apk add tzdata
ENV TZ America/Montreal
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app