No need to have bash + clean tools after building
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2020-04-13 21:26:51 +02:00
parent 9baba7c6a0
commit 6e858809bd
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@ COPY pynyaata /app/pynyaata
COPY requirements.txt /app
COPY *.py /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"]