Skip to content

Commit 61b68f0

Browse files
committed
fix(EOL):
1 parent 4a2d9c7 commit 61b68f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.git/
2-
__pycache__/
2+
__pycache__/

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ WORKDIR /app
44

55
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
66

7-
RUN curl -sSL https://install.python-poetry.org | python3 -
7+
RUN curl -sSL https://install.python-poetry.org | python3 -
88

99
# Ensure Poetry is available in PATH
1010
ENV PATH="/root/.local/bin:$PATH"
1111

1212
COPY pyproject.toml poetry.lock ./
1313

14-
RUN poetry self add "poetry-plugin-export" && \
15-
poetry export -f requirements.txt --without-hashes -o requirements.txt && \
14+
RUN poetry self add "poetry-plugin-export" &&
15+
poetry export -f requirements.txt --without-hashes -o requirements.txt &&
1616
pip install --no-cache-dir -r requirements.txt
1717

1818
COPY . .

0 commit comments

Comments
 (0)