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