Files
artdanj-resume/Dockerfile
2022-02-28 21:59:47 +01:00

16 lines
193 B
Docker

FROM node:16-alpine3.11
RUN mkdir -p /usr/src/resume
WORKDIR /usr/src/resume
COPY . /usr/src/resume
RUN yarn install
RUN yarn build
EXPOSE 3344
CMD ["yarn", "preview", "--port", "3344"]