Skip to content

Commit

Permalink
Cleaning up Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nmagee committed Jun 7, 2023
1 parent a5e52b7 commit 87fbe4e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
# FROM python:3.9
# WORKDIR /code
# COPY ./requirements.txt /code/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# COPY ./app /code/app
# CMD ["uvicorn", "--proxy-headers", "--workers", "8", "app.main:app", "--host", "0.0.0.0", "--port", "80"]

FROM tiangolo/uvicorn-gunicorn:python3.9
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
Expand Down

0 comments on commit 87fbe4e

Please sign in to comment.