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