CoolFace
Apppublic

Jaswin-27/MetaXSCALER_Hackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1# Use Python base image
2FROM python:3.10
3
4# Set working directory
5WORKDIR /app
6
7# Copy files
8COPY . /app
9
10# Install dependencies
11RUN pip install --no-cache-dir -r requirements.txt
12
13# Expose port
14EXPOSE 8000
15
16# Run server
17CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]