Spaces:
Runtime error
Runtime error
File size: 297 Bytes
87d52d6 3e41726 87d52d6 |
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 https://github.com/DiogoMiguel93/Catalog-Translator.git /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]
|