tor-router/Dockerfile

19 lines
218 B
Docker
Raw Normal View History

2017-01-31 15:56:42 +00:00
FROM ubuntu:16.10
EXPOSE 9050
EXPOSE 53
ADD https://deb.nodesource.com/setup_7.x /nodejs_install
RUN bash /nodejs_install
RUN apt install -y nodejs tor git
ADD . /app
WORKDIR /app
RUN npm install
CMD npm start