diff options
Diffstat (limited to 'hetzner-admin/Dockerfile')
| -rw-r--r-- | hetzner-admin/Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hetzner-admin/Dockerfile b/hetzner-admin/Dockerfile new file mode 100644 index 0000000..524612d --- /dev/null +++ b/hetzner-admin/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3.12-slim +WORKDIR /app +RUN pip install --no-cache-dir flask gunicorn paramiko +COPY app.py . +CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"] |
