document-translator / Dockerfile
mjuvilla's picture
separated the translator that uses the HF endpoint
0142045
raw
history blame contribute delete
187 Bytes
FROM python:3.12-slim
COPY src ./src
COPY scripts ./scripts
COPY gradio_app.py .
COPY requirements.txt .
ENV DOCKER_ENV=1
RUN bash scripts/setup_env.sh
CMD ["python", "gradio_app.py"]