1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00
Files
mywebsite/node_modules/mongo-express/Dockerfile

13 lines
130 B
Docker

FROM node:latest
WORKDIR /app
ADD . /app
RUN npm install
RUN cp config.default.js config.js
EXPOSE 8081
CMD ["npm", "start"]