webogram-i2p/Dockerfile
Vincent Ambo 93c244694a
Adds a Dockerfile
This Dockerfile can be used for building a Docker image of Webogram that
launches a container with Node listening on port 8000.

This image uses the official nginx image as its base.
2014-09-02 18:53:36 +02:00

11 lines
129 B
Docker

FROM node
ADD . /opt/webogram
WORKDIR /opt/webogram
RUN npm install
EXPOSE 8000
CMD ["node", "server.js", "8000", "0.0.0.0"]