2023-07-30 05:15:13 +00:00
|
|
|
FROM python:3.11-alpine
|
2023-07-27 23:26:27 +00:00
|
|
|
|
2023-07-28 20:03:31 +00:00
|
|
|
RUN pip install --extra-index-url https://git.snyman.info/api/packages/raoul/pypi/simple/ CodeSmidgen hypercorn
|
2023-07-27 23:26:27 +00:00
|
|
|
|
|
|
|
EXPOSE 8000
|
2023-07-30 04:58:59 +00:00
|
|
|
CMD ["hypercorn", "codesmidgen.app:application"]
|