Spaces:
Paused
Paused
File size: 364 Bytes
87d52d6 a0d6644 87d52d6 433134d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y git && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN git clone -b Test https://github.com/DiogoMiguel93/Catalog-Translator.git /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080", "--workers", "2"]
|