pup-fileserver / Dockerfile
pup-py's picture
SHELL
8361bc6
raw
history blame
298 Bytes
FROM alpine:latest
RUN apk add --no-cache bash curl
SHELL ["/bin/bash", "-c"]
WORKDIR /code
COPY . .
RUN ./pup
RUN pup py3.11
# EXPOSE 7860
# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
CMD ["pixi", "run", "python", "-m", "http.server", "7860", "--directory", "."]