nodejs / Dockerfile
dtsky's picture
Update Dockerfile
6d0f7ec
raw
history blame
141 Bytes
FROM node:latest
WORKDIR /code
COPY ./package.json /code/package.json
RUN npm install
COPY . .
CMD ["node", "app.js", "--port", "7860"]