From 9c4ba4fb7d0c0a5568e41ee8697a45cc5a43b10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Koco=C5=84?= <39369166+jkocon@users.noreply.github.com> Date: Tue, 9 Dec 2025 12:58:03 +0100 Subject: [PATCH] Create dockerfile --- minio_backup/dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 minio_backup/dockerfile diff --git a/minio_backup/dockerfile b/minio_backup/dockerfile new file mode 100644 index 0000000..ace8075 --- /dev/null +++ b/minio_backup/dockerfile @@ -0,0 +1,10 @@ +FROM python:3.11-slim + +RUN apt-get update && apt-get install -y openssl && apt-get clean + +WORKDIR /app +COPY run.py /app/run.py + +RUN pip install requests boto3 + +CMD ["python", "/app/run.py"]