This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from seemethere/arm64_bionic
Add Ubuntu 18.04 arm64 builds Upstream-commit: bad901e Component: packaging
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:bionic | ||
|
||
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential cmake curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libseccomp-dev pkg-config vim-common libsystemd-dev --no-install-recommends && rm -rf /var/lib/apt/lists/* | ||
|
||
ENV GO_VERSION 1.9.4 | ||
|
||
RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-arm64.tar.gz" | tar xzC /usr/local | ||
ENV GOPATH /go | ||
ENV PATH $PATH:/usr/local/go/bin:$GOPATH/bin | ||
ENV DOCKER_BUILDTAGS apparmor seccomp selinux | ||
ENV RUNC_BUILDTAGS apparmor seccomp selinux | ||
|
||
COPY common/ /root/build-deb/debian | ||
COPY build-deb /root/build-deb/build-deb | ||
|
||
RUN mkdir -p /go/src/github.com/docker && \ | ||
mkdir -p /go/src/github.com/opencontainers && \ | ||
ln -snf /engine /root/build-deb/engine && \ | ||
ln -snf /cli /root/build-deb/cli && \ | ||
ln -snf /root/build-deb/engine /go/src/github.com/docker/docker && \ | ||
ln -snf /root/build-deb/cli /go/src/github.com/docker/cli | ||
|
||
|
||
ENV DISTRO ubuntu | ||
ENV SUITE bionic | ||
|
||
WORKDIR /root/build-deb | ||
|
||
ENTRYPOINT ["/root/build-deb/build-deb"] |