Skip to content
Snippets Groups Projects
Commit 25ba5d14 authored by Xiao Gui's avatar Xiao Gui
Browse files

feat: add Dockerfile

parent 5fc8016d
No related branches found
No related tags found
No related merge requests found
FROM node:8
ARG PORT
ENV PORT=$PORT
COPY . /iv
WORKDIR /iv
RUN npm i
EXPOSE $PORT
ENTRYPOINT [ "node", "dist/server.js" ]
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment