Skip to content

Commit

Permalink
fix: adds git to docker image (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Sep 25, 2024
1 parent 56c6853 commit f2311ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ ADD src ./src
ADD pyproject.toml .
ADD setup.py .

# Add git in case we need to install from branches
RUN apt-get update && apt-get install -y git

# Pip command. Without '-e' flag, index.html isn't found. There's probably a
# better way to add the static html files to the site-packages.
RUN pip install -e .[server] --no-cache-dir
Expand Down

0 comments on commit f2311ac

Please sign in to comment.