codesmidgen/Dockerfile.nightly

11 lines
200 B
Docker
Raw Normal View History

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