File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11.git /
2- __pycache__ /
2+ __pycache__ /
Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ WORKDIR /app
44
55RUN 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
1010ENV PATH="/root/.local/bin:$PATH"
1111
1212COPY 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
1818COPY . .
You can’t perform that action at this time.
0 commit comments