Spaces:
Paused
Paused
File size: 664 Bytes
0fa82fe 1035c73 bb3ec09 0fa82fe bb3ec09 dc5ae5c bb3ec09 3992049 0fa82fe bb3ec09 343b2e9 0fa82fe dc5ae5c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# 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
# Install git
RUN apt-get update && apt-get install -y git
# Clone the repository
RUN git clone https://github.com/UrloMythus/MammaMia.git .
# Copy the local config.json file to the container
COPY config.json /app/config.json
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
EXPOSE 8080
# Run run.py when the container launches
CMD ["python", "run.py"] |