Minor updates for running builds under stretch.

This commit is contained in:
Jeffrey Townsend
2018-12-31 09:45:16 -08:00
parent 5dfbc57966
commit e9ac2a8c9a
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM opennetworklinux/builder8:1.9
MAINTAINER Jeffrey Townsend <jeffrey.townsend@bigswitch.com>
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && \
apt-get install linux-perf-4.9 linux-tools-3.16 linux-tools -y
#
# Docker shell and other container tools.
#
COPY docker_shell /bin/docker_shell
COPY container-id /bin/container-id

View File

@@ -0,0 +1,19 @@
VERSION=1.10
USER=opennetworklinux
REPO=builder8
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)