more freakin refactoring

This commit is contained in:
2020-09-28 18:21:13 +02:00
parent bc48386a3a
commit 5bff7af3e2
14 changed files with 215 additions and 32 deletions

View File

@@ -2,7 +2,7 @@ FROM debian:buster-slim
LABEL maintainers="Cyrill Troxler <cyrilltroxler@gmail.com>"
LABEL description="csi-s3 slim image"
RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
#RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
# s3fs and some other dependencies
RUN apt-get update && \
apt-get install -y \
@@ -10,5 +10,5 @@ RUN apt-get update && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*
COPY ./_output/s3driver /s3driver
COPY ./s3driver /s3driver
ENTRYPOINT ["/s3driver"]

View File

@@ -1,7 +1,7 @@
FROM debian:buster-slim as s3backer
ARG S3BACKER_VERSION=1.5.4
RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
#RUN echo 'Acquire::http::proxy "http://172.23.255.1:3142";' >/etc/apt/apt.conf.d/proxy
RUN apt-get update && apt-get install -y \
build-essential \
autoconf \