Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
Closes #14
  • Loading branch information
Simone Esposito authored and underyx committed Sep 5, 2016
1 parent f801ee0 commit 64a0de8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.5-alpine

MAINTAINER Simone Esposito <simone@kiwi.com>

RUN mkdir -p /app
WORKDIR /app

COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app

CMD [ "python", "-m", "starpicker.run" ]

0 comments on commit 64a0de8

Please sign in to comment.