Skip to content

Commit

Permalink
update the Dockerfile to support script reports
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuakula authored Dec 3, 2017
1 parent 80371ea commit 337b67e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ FROM python:2.7-alpine
LABEL MAINTAINER="Madhu Akula"

COPY . /app
RUN apk add --no-cache sshpass gcc bash \
&& apk --update add grep \
&& pip install -r /app/requirements.txt \

WORKDIR /app

RUN apk update && apk add --no-cache grep sshpass bash \
&& pip install -r requirements.txt \
&& pip install awscli --ignore-installed six

ENTRYPOINT ["python", "/app/cs.py"]

0 comments on commit 337b67e

Please sign in to comment.