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.
Files
IMIE_CC/Dockerfile
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"]