Files
hassio-addons/minio_backup/dockerfile
2025-12-09 12:58:03 +01:00

11 lines
190 B
Plaintext

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