deployment

This commit is contained in:
cupcakearmy
2020-01-12 19:29:34 +01:00
parent d8f8208bc2
commit 476ce70a7f
5 changed files with 79 additions and 1 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:alpine
WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN yarn
COPY next.config.js .
COPY .env .
CMD [ "yarn", "run", "start" ]