Files
artdanj-resume/Dockerfile
2022-02-28 22:27:10 +01:00

16 lines
175 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"]