1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00
onion/Dockerfile
Sylvain Bellemare e46a116bac Add dockerfile
2016-01-29 00:42:46 +01:00

16 lines
269 B
Docker

FROM node:5.5.0
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
RUN npm install -g gulp
EXPOSE 3000
ENV ONION_BASE_URL='/'
ENV ONION_SERVER_URL='http://spool.ascribe:49880/'
CMD [ "gulp", "serve" ]