medical-chatbot / Dockerfile
nadeen-elsayed's picture
Update Dockerfile
3e996c0 verified
raw
history blame contribute delete
203 Bytes
# Base image
FROM python:3.9
# Set working directory
WORKDIR /app
# Copy files
COPY . /app
# Expose API port
EXPOSE 8000
# Run API
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]