Skip to content

Commit

Permalink
Update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
capgadsx committed May 4, 2021
1 parent 730d47c commit 30ec7e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8-slim-2020-06-06
RUN apt update && apt install -y libmagic1 python3-testresources patch && rm -rf /var/lib/apt/lists/*
RUN python -m pip install --upgrade pip
COPY requirements.txt requirements.txt
RUN python -m pip install -r requirements.txt
RUN python -m pip install --upgrade pip virtualenv poetry
COPY poetry.lock poetry.lock
COPY pyproject.toml pyproject.toml
RUN poetry install
COPY deploy /repo/deploy
COPY tests /repo/tests
COPY run-seed.sh /repo/run-seed.sh
Expand Down

0 comments on commit 30ec7e8

Please sign in to comment.