From c300cafafaa18dd9c27e12bd6a68af6b2b35b6ba Mon Sep 17 00:00:00 2001 From: Roman Pavlov Date: Thu, 30 Mar 2023 13:18:47 +0300 Subject: [PATCH] Use alpine image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7fef936..8e3c359 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM python +FROM python:alpine WORKDIR /app -RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +RUN wget -O - https://sh.rustup.rs -q | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" COPY requirements.txt /app