pup-fileserver / Dockerfile
pup-py's picture
install with bin bash
ed42180
raw
history blame
271 Bytes
FROM alpine:latest
RUN apk add --no-cache bash curl
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", "."]