mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
13 lines
130 B
Docker
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"]
|
|
|