diff --git a/bot/dockerfile b/bot/dockerfile index d5b121f..5d8f1e9 100644 --- a/bot/dockerfile +++ b/bot/dockerfile @@ -2,9 +2,10 @@ FROM alpine:3.7 WORKDIR /app -COPY ./requirements.txt . - RUN apk add --no-cache python3 +RUN python3 -m pip install --upgrade pip + +COPY ./requirements.txt . RUN python3 -m pip install --no-cache-dir -r requirements.txt COPY ./ .