about summary refs log tree commit diff
path: root/third_party/glog/Dockerfile.ubuntu.template
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/glog/Dockerfile.ubuntu.template')
-rw-r--r--third_party/glog/Dockerfile.ubuntu.template14
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/glog/Dockerfile.ubuntu.template b/third_party/glog/Dockerfile.ubuntu.template
deleted file mode 100644
index 14f9b95891..0000000000
--- a/third_party/glog/Dockerfile.ubuntu.template
+++ /dev/null
@@ -1,14 +0,0 @@
-# Build Ubuntu image
-FROM @BUILD_ARCH@/@BUILD_FLAVOR@:@BUILD_RELEASE@
-
-# see https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#/run
-RUN apt-get update && \
-  apt-get install -y --no-install-recommends \
-  @BUILD_PACKAGES@ \
-  build-essential \
-  g++
-
-RUN mkdir -p /usr/src/app
-WORKDIR /usr/src/app
-
-COPY . /usr/src/app