crsr / Dockerfile
2ch's picture
Upload 6 files
44d3414 verified
raw
history blame
177 Bytes
FROM node:lts-alpine
EXPOSE 3000
ENV TZ=Europe/Moscow
WORKDIR /app
COPY . .
RUN yarn config set registry https://registry.npmmirror.com/
RUN yarn
CMD ["npm", "run", "start"]