dockerfile-wtf
All checks were successful
Deploy on Push / deploy (push) Successful in 1m23s

This commit is contained in:
Untone 2024-05-06 12:04:10 +03:00
parent 61e9953c86
commit 90e8b7272a

View File

@ -1,9 +1,7 @@
FROM python:alpine
# Update package lists and install necessary dependencies
RUN apk update &&
apk add --no-cache build-base icu-data-full curl python3-dev musl-dev &&
curl -sSL https://install.python-poetry.org | python
RUN apk update && apk add --no-cache build-base icu-data-full curl python3-dev musl-dev && curl -sSL https://install.python-poetry.org | python
# Set working directory
WORKDIR /app
@ -12,9 +10,7 @@ WORKDIR /app
COPY pyproject.toml /app/
# Install poetry and dependencies
RUN pip install poetry &&
poetry config virtualenvs.create false &&
poetry install --no-root --only main
RUN pip install poetry && poetry config virtualenvs.create false && poetry install --no-root --only main
# Copy the rest of the files
COPY . /app