Create dockerfile

This commit is contained in:
Jan Kocoń
2025-12-09 12:58:03 +01:00
committed by GitHub
parent 1321602f9f
commit 9c4ba4fb7d

10
minio_backup/dockerfile Normal file
View File

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