Spaces:
Runtime error
Runtime error
File size: 571 Bytes
df0d440 7d0f219 4acae3e df0d440 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Use the official Python base image
FROM python:3.9
# Set the working directory in the container
WORKDIR /app
# Copy the requirements.txt file and install the Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the Flask application code into the container
COPY . .
# Expose the port on which the Flask application will run
EXPOSE 5000
# Set the environment variable for Flask
ENV FLASK_APP=api_server.py
ENV TRANSFORMERS_CACHE=transformers_cache
# Run the Flask application
CMD ["flask", "run", "--host=0.0.0.0"]
|