CoolFace
Apppublic

MediaLover/Replicate

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1# Use an official Python runtime as the base image2FROM python:3.9-slim3 4# Set the working directory inside the container5WORKDIR /app6 7# Copy the current directory contents into the container at /app8COPY . /app9 10# Install required Python packages11RUN pip install --no-cache-dir flask huggingface_hub12 13# Expose port 786014EXPOSE 786015 16# Run the application17CMD ["python", "app.py"]