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 --- ttcn3-bts-test/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ttcn3-bts-test/Dockerfile') diff --git a/ttcn3-bts-test/Dockerfile b/ttcn3-bts-test/Dockerfile index 3fec55b..1f5b47c 100644 --- a/ttcn3-bts-test/Dockerfile +++ b/ttcn3-bts-test/Dockerfile @@ -1,4 +1,5 @@ -FROM laforge/debian-stretch-titan +ARG USER +FROM $USER/debian-stretch-titan RUN mkdir /root/projects && (cd /root/projects && ln -sf / git) RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git -- cgit v1.2.3