duplicati/ReleaseBuilder/Resources/debian/Dockerfile.build
2024-08-03 00:48:27 +02:00

22 lines
No EOL
664 B
Text

FROM ubuntu:latest
# Source build packages locally
ARG DOCKER_BUILD_PROXY
ENV DOCKER_BUILD_PROXY=$DOCKER_BUILD_PROXY
ENV DEBIAN_FRONTEND=noninteractive
# Install common build tools
RUN set -uex; \
export http_proxy=${HTTP_PROXY-${DOCKER_BUILD_PROXY}}; \
apt-get update; \
apt-get install --no-install-suggests --no-install-recommends -y \
build-essential \
debhelper \
dpkg-dev; \
apt-get clean all
LABEL org.label-schema.name="duplicati/debian-build" \
org.label-schema.version="20161230" \
org.label-schema.vendor="Deployable" \
org.label-schema.docker.cmd="docker run -ti duplicati/debian-build" \
org.label-schema.schema-version="1.0"