Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
FROM python:3.13-alpine
|
2 |
-
RUN apk add --no-cache git
|
3 |
WORKDIR /code
|
4 |
-
RUN git clone --depth 1 https://huggingface.co/fotopee/fotopee . && rm -rf .git .gitattributes README.md
|
5 |
-
RUN chmod -R 777 /code
|
6 |
EXPOSE 7860
|
7 |
-
CMD ["python", "/code/run.py"]
|
|
|
1 |
FROM python:3.13-alpine
|
|
|
2 |
WORKDIR /code
|
3 |
+
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
|
|
|
4 |
EXPOSE 7860
|
5 |
+
CMD ["python", "/code/run.py"]
|