File size: 473 Bytes
053ff32 ecda3c4 053ff32 ecda3c4 053ff32 ecda3c4 053ff32 ecda3c4 053ff32 ecda3c4 566e79a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | FROM python:3.10
# katalog aplikacji
WORKDIR /app
# kopiowanie plików projektu
COPY . /app
# aktualizacja pip
RUN pip install --upgrade pip
# instalacja bibliotek
RUN pip install torch
RUN pip install diffusers
RUN pip install transformers
RUN pip install accelerate
RUN pip install safetensors
RUN pip install pillow
RUN pip install flask
RUN pip install deep-translator
# port wymagany przez HuggingFace
EXPOSE 7860
# uruchomienie backendu
CMD ["python", "api.py"] |