diff --git a/Dockerfile b/Dockerfile index 59760b8..36c26f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]