codesmidgen/Dockerfile.nightly

10 lines
151 B
Docker

FROM python:3.11
WORKDIR /app
ADD . /app
RUN pip install -e .
RUN pip install hypercorn
EXPOSE 8000
CMD ["hypercorn", "codesmidgen.app:application"]