codesmidgen/Dockerfile.nightly

10 lines
139 B
Docker
Raw Normal View History

2023-07-29 18:37:40 +00:00
FROM python:3.11
WORKDIR /app
ADD . /app
RUN pip install -e .
RUN pip install hypercorn
EXPOSE 8000
CMD ["hypercorn", "codesmidgen.app"]