Spaces:
Paused
Paused
File size: 859 Bytes
deebdbe 66a7770 deebdbe 2fd557a 66a7770 deebdbe 66a7770 deebdbe ce27ec8 deebdbe ce27ec8 b443e02 3edce27 deebdbe 66a7770 deebdbe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # 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
# Expose the secret GITHUB_TOKEN at buildtime and use its value in git clone command
# RUN --mount=type=secret,id=GITHUB_TOKEN,mode=0444,required=true \
# git clone -b worker_b https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/SteveCelticus/httpsstream.git /app || true && \
# ls -l /app
RUN git clone https://github.com/NekroMonger25/MammaMia.git /app
# 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"] |