Files
ha-addon/amazon-s3-backup/Dockerfile
2024-04-03 10:20:37 +02:00

19 lines
301 B
Docker
Executable File

ARG BUILD_FROM
FROM ${BUILD_FROM}
ENV LANG C.UTF-8
COPY rootfs /
RUN chmod a+x /run.sh
# add aws-cli and deps
RUN apk add -v --update --no-cache \
python3 \
py3-pip \
groff \
less \
jq \
aws-cli
#RUN pip3 install --upgrade awscli
CMD [ "/run.sh" ]