Skip to content

Commit 739a4c9

Browse files
committed
rename requirements.txt
1 parent c1001b6 commit 739a4c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ARG GIT_TAG="x.x.x"
1515

1616
WORKDIR /app
1717

18-
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
18+
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.gen.txt
1919
COPY . .
2020

2121
# Install packages: https://stackoverflow.com/a/68666500/4457856
@@ -25,6 +25,6 @@ RUN apt-get update \
2525
&& rm -rf /var/lib/apt/lists/*
2626

2727
# Install dependencies
28-
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
28+
RUN pip install --no-cache-dir --upgrade -r /app/requirements.gen.txt
2929

3030
CMD ["python", "-m", "streamlit", "run", "apps/99_streamlit_examples/main.py"]

0 commit comments

Comments
 (0)