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