aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docker/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docker/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index b751ca7..f745ca6 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -2,16 +2,16 @@ FROM alpine:3.17 AS base
FROM base AS build
-RUN apk add --no-cache gcc libffi-dev make musl-dev python3-dev py3-pip
+RUN apk add -q --no-cache gcc libffi-dev make musl-dev python3-dev py3-pip
COPY ["requirements.txt", "/tmp/"]
-RUN pip3 install --no-cache-dir --target=/deps -r /tmp/requirements.txt
+RUN pip3 install -q --no-cache-dir --target=/deps -r /tmp/requirements.txt
FROM base
LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
-RUN apk add --no-cache bash git openssh-client python3 tini
+RUN apk add -q --no-cache bash git openssh-client python3 tini
COPY --from=build ["/deps", "/deps/"]
ENV PYTHONPATH="/deps:/usr/src"