mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-04-22 10:42:10 +00:00
14 lines
166 B
Docker
14 lines
166 B
Docker
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"]
|