Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Camp committed Jan 9, 2020
1 parent 64c6440 commit 4abcfe4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
FROM python:3.7-alpine
LABEL exposed.command.single=createmd

COPY results.sh /
COPY requirements.txt /
RUN apk add git && pip install -r /requirements.txt
RUN apk add git && \
pip install -r /requirements.txt

RUN pip install git+https://github.com/CivicActions/createmd.git#egg=createmd

VOLUME /results
WORKDIR /src
ENTRYPOINT ["createmd"]
ENTRYPOINT ["/results.sh"]
CMD ["--help"]

0 comments on commit 4abcfe4

Please sign in to comment.