less-install
All checks were successful
deploy / deploy (push) Successful in 51s

This commit is contained in:
Untone 2024-02-17 14:00:46 +03:00
parent b1ace7d82c
commit 2248afe3cd

View File

@ -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