foldsite/docs/content/deployment.md

13 lines
271 B
Markdown
Raw Normal View History

2025-03-15 15:55:40 -04:00
# Deployment
To deploy Foldsite, you can use Docker. Below is an example Dockerfile:
```dockerfile
FROM python:3.13.2-bookworm
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]
```