Back to debian, alpine is catastrophic !!!
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Michel Roux 2020-04-13 21:35:52 +02:00
parent 6e858809bd
commit 4d0a312c1a
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM python:alpine
FROM python:slim
COPY pynyaata /app/pynyaata
COPY requirements.txt /app
COPY *.py /app/
WORKDIR /app
RUN apk add build-base && pip install -r requirements.txt && apk del build-base
RUN pip install -r requirements.txt
CMD ["python", "run.py"]