Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-05-26 00:17:30 +02:00
parent 21eba2d473
commit 54d8217133
36 changed files with 3128 additions and 2654 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:alpine
# instal yarn
RUN apk -q add yarn
# Go to user home
WORKDIR /home/tcgdex
COPY . .
RUN yarn && yarn build && yarn sitemap
CMD ["yarn", "server"]