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"]