diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..17478a6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +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"]