FROM alpine:edge RUN apk add --no-cache bash curl pixi 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", "."]