Skip to content

Commit

Permalink
Merge pull request HatBashBR#20 from samsheff/master
Browse files Browse the repository at this point in the history
Add Dockerfile
  • Loading branch information
m0rtem authored Jan 1, 2018
2 parents 6fdd1d6 + a6b970e commit 4c86bbc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM debian:sid

ENV LANG C.UTF-8
ENV USER root
ENV HOME /cloudfail
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update

RUN apt-get install -yq python3-pip

COPY . $HOME

WORKDIR $HOME

RUN pip3 install -r requirements.txt

ENTRYPOINT ["python3", "cloudfail.py"]

0 comments on commit 4c86bbc

Please sign in to comment.