mirror of
https://github.com/bvanroll/example-node-project.git
synced 2025-08-28 19:32:43 +00:00
6 lines
93 B
Docker
6 lines
93 B
Docker
FROM node:9-slim
|
|
ENV PORT 8080
|
|
EXPOSE 8080
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
CMD ["npm", "start"] |