curl-converter / Dockerfile
CaioXapelaum's picture
Update Dockerfile
7c34711 verified
raw
history blame contribute delete
200 Bytes
FROM python:3.12.7
WORKDIR /app
COPY . .
RUN git clone https://github.com/caioxapelao/curl-converter-web-static.git
WORKDIR /app/curl-converter-web-static
CMD ["python", "-m", "http.server", "7860"]