codesmidgen/Dockerfile
Raoul Snyman 62029b9acd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Getting things ready to containerize CodeSmigen
- Update the Dockerfile to pull the correct package
- Update the README.rst with environment variables
- Add typing annotations
- Refactor config to be loaded via environment variables as well as a file
2023-07-28 13:07:11 -07:00

7 lines
180 B
Docker

FROM python:3.11
RUN pip install --extra-index-url https://git.snyman.info/api/packages/raoul/pypi/simple/ CodeSmidgen hypercorn
EXPOSE 8000
CMD ["hypercorn", "codesmidgen.app"]