Skip to content

Commit

Permalink
Add Dockerfile (#18)
Browse files Browse the repository at this point in the history
* Add Dockerfile

* Minor tweaks
  • Loading branch information
homanp authored Jan 17, 2024
1 parent 13a2a3b commit 485936f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Use an official Python runtime as a parent image
FROM python:3.11

# Set the working directory in the container
WORKDIR /usr/src/app

# Copy the current directory contents into the container at /usr/src/app
COPY . /usr/src/app

# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Make port 80 available to the world outside this container
EXPOSE 80

# Run app.py when the container launches
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]

0 comments on commit 485936f

Please sign in to comment.