mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-11-03 03:38:18 +00:00
builder9:1.2
- Stretch Update to fix qemu-aarch64. - Add apt-transport-https
This commit is contained in:
17
docker/images/builder9/1.2/Dockerfile
Normal file
17
docker/images/builder9/1.2/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
############################################################
|
||||||
|
#
|
||||||
|
# Update Packages for arm64.
|
||||||
|
# Additional build dependencies.
|
||||||
|
#
|
||||||
|
############################################################
|
||||||
|
FROM opennetworklinux/builder9:1.1
|
||||||
|
MAINTAINER Jeffrey Townsend <jeffrey.townsend@bigswitch.com>
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get upgrade -y && \
|
||||||
|
apt-get install -y apt-transport-https
|
||||||
|
|
||||||
|
# Docker shell and other container tools.
|
||||||
|
#
|
||||||
|
COPY docker_shell /bin/docker_shell
|
||||||
|
COPY container-id /bin/container-id
|
||||||
19
docker/images/builder9/1.2/Makefile
Normal file
19
docker/images/builder9/1.2/Makefile
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
VERSION=1.2
|
||||||
|
USER=opennetworklinux
|
||||||
|
REPO=builder9
|
||||||
|
|
||||||
|
TOOLS=../../../tools/docker_shell ../../../tools/container-id
|
||||||
|
|
||||||
|
build: check_version
|
||||||
|
cp $(TOOLS) .
|
||||||
|
docker build -t $(USER)/$(REPO):$(VERSION) .
|
||||||
|
rm -rf $(notdir $(TOOLS))
|
||||||
|
|
||||||
|
#
|
||||||
|
# Todo: Query remote repository to see if the request version already exists to avoid accidental overwrites
|
||||||
|
# when a new image is built but the VERSION variable is not updated.
|
||||||
|
#
|
||||||
|
check_version:
|
||||||
|
|
||||||
|
push:
|
||||||
|
docker push $(USER)/$(REPO):$(VERSION)
|
||||||
Reference in New Issue
Block a user