From 2248afe3cd0c160fb43cdbff0be0c9ef0d3547d8 Mon Sep 17 00:00:00 2001 From: Untone Date: Sat, 17 Feb 2024 14:00:46 +0300 Subject: [PATCH] less-install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05c855d..c168a13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:alpine3.18 WORKDIR /app COPY . /app -RUN apk update && apk add --no-cache git gcc curl postgresql-client +RUN apk update && apk add --no-cache git gcc curl RUN curl -sSL https://install.python-poetry.org | python ENV PATH="${PATH}:/root/.local/bin" RUN poetry config virtualenvs.create false && poetry install --no-dev