This repository has been archived on 2023-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
IMIE_CC/Dockerfile
Florian Bouillon 5e1987c6ba
Ajout de l'ORM
Co-authored-by: S0dy <msorin@msorin.com>
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-04-29 11:42:50 +02:00

14 lines
149 B
Docker

FROM node:alpine
# instal yarn
RUN apk -q add yarn
# Go to user home
WORKDIR /home/tcgdex
COPY . .
RUN yarn && yarn build
CMD ["yarn", "start"]