FROM python:3.13-alpine | |
WORKDIR /code | |
RUN apk add --no-cache git && git clone --depth 1 https://huggingface.co/fotopee/fotopee . && chmod -R 777 /code && rm -rf .git .gitattributes README.md | |
EXPOSE 7860 | |
CMD ["python", "/code/run.py"] |
FROM python:3.13-alpine | |
WORKDIR /code | |
RUN apk add --no-cache git && git clone --depth 1 https://huggingface.co/fotopee/fotopee . && chmod -R 777 /code && rm -rf .git .gitattributes README.md | |
EXPOSE 7860 | |
CMD ["python", "/code/run.py"] |