Raoul Snyman
62029b9acd
- 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
7 lines
180 B
Docker
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"]
|