Dockerfile

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-04-02 14:12:55 +02:00
parent a6a10818c6
commit b3777c9580
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.7.3-alpine3.8
# Install Dependences
RUN pip install pipenv
COPY Pipfile Pipfile.lock ./
RUN pipenv install --system --deploy && rm Pipfile Pipfile.lock
# Install kapow!
COPY kapow.py /usr/sbin/kapow
RUN chmod a+x /usr/sbin/kapow