No need to have bash + clean tools after building
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michel Roux 2020-04-13 21:26:51 +02:00
parent 9baba7c6a0
commit 6e858809bd

View File

@ -4,5 +4,5 @@ COPY pynyaata /app/pynyaata
COPY requirements.txt /app COPY requirements.txt /app
COPY *.py /app/ COPY *.py /app/
WORKDIR /app WORKDIR /app
RUN apk add build-base bash && pip install -r requirements.txt RUN apk add build-base && pip install -r requirements.txt && apk del build-base
CMD ["python", "run.py"] CMD ["python", "run.py"]