codesmidgen/Dockerfile.nightly
Raoul Snyman 19265e034f
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Add building nightly images
2023-07-29 11:40:05 -07:00

10 lines
139 B
Docker

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