Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
samsheff committed Jan 1, 2018
1 parent 6fdd1d6 commit a6b970e
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 a6b970e

Please sign in to comment.