File size: 381 Bytes
a5475c4 6ac13b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Base image
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
# Set working directory
WORKDIR /app
# Copy the API files to the container
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir fastapi pydantic uvicorn scikit-learn joblib pandas numpy
# Expose the API port
EXPOSE 80
# Start the API
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|