2023-07-30 05:15:13 +00:00
|
|
|
FROM python:3.11-alpine
|
2023-07-29 18:37:40 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
ADD . /app
|
2023-07-30 05:15:13 +00:00
|
|
|
RUN apk add git
|
2023-07-29 18:37:40 +00:00
|
|
|
RUN pip install -e .
|
|
|
|
RUN pip install hypercorn
|
|
|
|
|
|
|
|
EXPOSE 8000
|
2023-07-30 04:58:59 +00:00
|
|
|
CMD ["hypercorn", "codesmidgen.app:application"]
|