Skip to content

Commit

Permalink
Fixing python install in docker (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmyers authored Nov 29, 2024
1 parent bca1727 commit 717a364
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/tutorial/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ FROM python:3.10

WORKDIR /app

COPY . .
COPY requirements.txt .

RUN make setup
RUN pip install -r requirements.txt

COPY dashboard/ dashboard/

CMD ["python", "-m", "dashboard", "run"]

0 comments on commit 717a364

Please sign in to comment.