1
0
mirror of https://github.com/barthuijgen/factorio-sites.git synced 2024-11-28 09:33:51 +02:00
factorio-sites/blueprints.github.Dockerfile
2021-03-13 17:31:57 +01:00

17 lines
344 B
Docker

FROM node:14-slim
RUN apt-get -qy update && apt-get -qy install openssl
WORKDIR /usr/src/app
COPY dist/apps/blueprints/package.json ./package.json
COPY yarn.lock .
COPY yalc.lock .
COPY .yalc ./.yalc/
RUN yarn install --production
COPY node_modules/.prisma ./node_modules/.prisma/
COPY dist/apps/blueprints .
CMD ["yarn", "next", "start"]