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 05:30:56 +00:00
|
|
|
CMD ["hypercorn", "--bind", "0.0.0.0:8000", "codesmidgen.app:application"]
|