Raoul Snyman
bcb29e3d1c
- Update hatch environments for linting, testing - Add initial Dockerfile - Add CI pipeline configuration - Add test - Add icon - Remove setup.py
7 lines
153 B
Docker
7 lines
153 B
Docker
FROM python:3.11
|
|
|
|
RUN pip install stickynotes --index-url https://git.snyman.info/packages/raoul/index
|
|
|
|
EXPOSE 8000
|
|
CMD ["hypercorn", "stickynotes.app"]
|