FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
ENV S3_VERSION 310_Final
RUN apt-get update && apt-get upgrade -y && apt-get -y install wget openssh-client git vim \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /opt && chmod 777 /opt
WORKDIR /opt
RUN git clone
Sie müssen registriert sein, um Links zu sehen.
\
&& mv ./s3_releases ./s3 \
&& chmod -R 777 ./s3
WORKDIR /opt/s3
COPY entrypoint.sh /opt/s3/entrypoint.sh
RUN cd /opt/s3 \
&& chmod 777 ./entrypoint.sh \
&& echo "upx_c=-1" > ./support/configs/upx_option
RUN /opt/s3/s3 checkout
ENTRYPOINT ["/bin/bash", "/opt/s3/entrypoint.sh"]