mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
8 lines
138 B
Docker
8 lines
138 B
Docker
FROM node:4-slim
|
|
RUN npm install express@4
|
|
RUN npm install redis@3
|
|
COPY files/ /files/
|
|
COPY webui.js /
|
|
CMD ["node", "webui.js"]
|
|
EXPOSE 80
|