DenisSlider2000/dockerfile
2022-04-13 13:26:33 +02:00

16 lines
217 B
Plaintext

FROM node:16
WORKDIR /docker
COPY package.json ./
COPY yarn.lock ./
RUN yarn
COPY . .
ENV TZ=Europe/Paris
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
CMD ["node", "index.js"]