From 7ed7a2bdd2f249347ac93aef6a8cd32b2a6cfd3a Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 5 Sep 2018 13:12:13 +0200 Subject: Fix "'laforge/debian-jessie-build' not found" Instead of hardcoding laforge's username in all FROM statements in the Dockerfiles, make use of the USER variable (as passed through by the "make/Makefile" with "docker build --build-arg USER=..."). Thanks to fixeria for proposing this fix! This requires running docker-ce, old versions of docker (such as the one in the official repositories of the latest Fedora) don't support variables in the FROM line. But docker-ce can be installed after adding docker's 3rd party repositories. Closes: OS#3457 Change-Id: Ic5f11c8a4e247f632cb6aea6d147e94c53e0130f --- osmo-bts-master/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'osmo-bts-master/Dockerfile') diff --git a/osmo-bts-master/Dockerfile b/osmo-bts-master/Dockerfile index 3c2dbec..69a8d4c 100644 --- a/osmo-bts-master/Dockerfile +++ b/osmo-bts-master/Dockerfile @@ -1,4 +1,5 @@ -FROM laforge/debian-jessie-build +ARG USER +FROM $USER/debian-jessie-build MAINTAINER Harald Welte -- cgit v1.2.3