Add dockerfile

This commit is contained in:
2022-02-28 21:59:47 +01:00
parent 9d5dea451e
commit d41f4d2af0

15
Dockerfile Normal file
View File

@@ -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"]