All checks were successful
Datadog Secrets Scanning / Datadog Static Analyzer (push) Successful in 9s
Datadog Software Composition Analysis / Datadog SBOM Generation and Upload (push) Successful in 15s
Datadog Static Analysis / Datadog Static Analyzer (push) Successful in 19s
Release / build (release) Successful in 39s
13 lines
271 B
Markdown
13 lines
271 B
Markdown
# 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"]
|
|
```
|