examples: add daily-multi-translation

This commit is contained in:
Aleix Conchillo Flaqué
2025-04-30 10:54:33 -07:00
parent 74e3c3677e
commit 75c039de33
9 changed files with 625 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM python:3.10-bullseye
RUN mkdir /app
RUN mkdir /app/assets
RUN mkdir /app/utils
COPY *.py /app/
COPY requirements.txt /app/
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "server.py"]