Skip to content

Commit

Permalink
fix: legacy_app dockerfile paths
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveVodrazka authored Dec 11, 2024
1 parent e3bf955 commit 250af0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/legacy_app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ FROM python:3.10
WORKDIR /app

RUN pip install poetry
COPY legacy_app/pyproject.toml legacy_app/poetry.lock* ./
COPY pyproject.toml poetry.lock* ./
RUN poetry config virtualenvs.create false \
&& poetry install --no-interaction --no-ansi

COPY legacy_app/src legacy_app/src
COPY legacy_app/app.py .
COPY legacy_app/update_data.py .
COPY src src
COPY app.py .
COPY update_data.py .

CMD ["streamlit", "run", "app.py"]

0 comments on commit 250af0c

Please sign in to comment.