pup-fileserver / Dockerfile
pup-py's picture
pup2
06992e1
raw
history blame
251 Bytes
FROM alpine:latest
RUN apk add --no-cache bash
WORKDIR /code
COPY . .
RUN ./pup && pup py3.11
# EXPOSE 7860
# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
CMD ["python3", "-m", "http.server", "7860", "--directory", "."]