2021-07-09 13:46:12 +00:00
|
|
|
FROM node:14.17.3-buster
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN npm install -g yarn
|
|
|
|
RUN yarn install
|
|
|
|
RUN yarn build
|
2021-07-23 15:39:23 +00:00
|
|
|
RUN yarn cache clean
|
2021-07-09 13:46:12 +00:00
|
|
|
|
2021-07-15 19:21:22 +00:00
|
|
|
EXPOSE ${PORT}
|
|
|
|
|
2021-07-09 13:46:12 +00:00
|
|
|
CMD ["yarn", "preview"]
|