Skip to content

Commit

Permalink
Added maintainer
Browse files Browse the repository at this point in the history
Added docker file that pulls source from github
  • Loading branch information
pennyfx committed Jun 15, 2016
1 parent 1fac179 commit af79c68
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3-onbuild
#RUN addgroup -S two1 && adduser -S -G two1 two1
MAINTAINER "Arron Schaar"

ENV CONFIG_DIR "/config/"

Expand Down
18 changes: 18 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM python:latest
MAINTAINER "Arron Schaar"

WORKDIR /usr/src/

RUN apt-get update
RUN apt-get -y install wget zip
RUN wget "https://github.com/pennyfx/21-payable-proxy/archive/master.zip"
RUN unzip master.zip -d /usr/src/app/

ENV CONFIG_DIR "/config/"

VOLUME /config/
VOLUME /root/.two1/

EXPOSE 5000

CMD ["python",".app/two1proxy.py"]

0 comments on commit af79c68

Please sign in to comment.