File size: 676 Bytes
3d73776 83d0d30 3d73776 5a40280 12de6dc 3d73776 c7c9b7a 3d73776 4f1945b a2b10fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Use an official Python runtime as a parent image
FROM python:3.10-slim-buster
# Set the working directory in the container to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
# (including run.py, filmpertutti.py, and requirements.txt)
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install fastapi requests beautifulsoup4 lxml jinja2 python-multipart
RUN pip install --upgrade uvicorn
#EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
EXPOSE 8000
# Run main.py when the container launches
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] |