mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
22 lines
No EOL
664 B
Text
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" |