pup-fileserver / Dockerfile
pup-py's picture
pup test
0e968fe
raw
history blame
214 Bytes
FROM ubuntu:latest
WORKDIR /code
COPY . .
RUN ./pup py3.11
# EXPOSE 786
# CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
CMD ["python3", "-m", "http.server", "7860", "--directory", "."]