Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
FROM python:3.12.7
|
|
|
|
|
|
|
2 |
RUN git clone https://github.com/caioxapelao/curl-converter-web-static.git
|
3 |
RUN cd "curl-converter-web-static"
|
4 |
CMD ["python", "-m", "http.server", "7860"]
|
|
|
1 |
FROM python:3.12.7
|
2 |
+
|
3 |
+
WORKDIR /app
|
4 |
+
COPY . .
|
5 |
RUN git clone https://github.com/caioxapelao/curl-converter-web-static.git
|
6 |
RUN cd "curl-converter-web-static"
|
7 |
CMD ["python", "-m", "http.server", "7860"]
|