fix(EOL):

This commit is contained in:
Alexander Myasoedov
2025-01-20 18:16:07 +02:00
parent 4a2d9c7e4e
commit 61b68f04d5
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
.git/
__pycache__/
__pycache__/
+3 -3
View File
@@ -4,15 +4,15 @@ WORKDIR /app
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN curl -sSL https://install.python-poetry.org | python3 -
# Ensure Poetry is available in PATH
ENV PATH="/root/.local/bin:$PATH"
COPY pyproject.toml poetry.lock ./
RUN poetry self add "poetry-plugin-export" && \
poetry export -f requirements.txt --without-hashes -o requirements.txt && \
RUN poetry self add "poetry-plugin-export" &&
poetry export -f requirements.txt --without-hashes -o requirements.txt &&
pip install --no-cache-dir -r requirements.txt
COPY . .