11 lines
174 B
Docker
11 lines
174 B
Docker
FROM python:3.11-alpine
|
|
|
|
WORKDIR /app
|
|
ADD . /app
|
|
RUN apk add git
|
|
RUN pip install -e .
|
|
RUN pip install hypercorn
|
|
|
|
EXPOSE 8000
|
|
CMD ["hypercorn", "codesmidgen.app:application"]
|