codesmidgen/Dockerfile

8 lines
129 B
Docker
Raw Normal View History

FROM python:3.11
ADD ./dist/stickynotes-*.whl /tmp
RUN pip install /tmp/*.whl
EXPOSE 8000
CMD ["hypercorn", "stickynotes.app"]