From cadc0b2681607f8b63fd7bca0d7c8a7ac5d80713 Mon Sep 17 00:00:00 2001 From: Kun Zhang Date: Wed, 12 Aug 2015 17:58:32 -0700 Subject: [PATCH] Fetch the latest Protobuf sources before checking out the release. The protoc-artifacts may have been created at previous release, which may not contain the latest Protobuf release. --- compiler/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/Dockerfile b/compiler/Dockerfile index 1ffccb5960..32c485046c 100644 --- a/compiler/Dockerfile +++ b/compiler/Dockerfile @@ -1,6 +1,7 @@ FROM protoc-artifacts:latest RUN scl enable devtoolset-1.1 'bash -c "cd /protobuf && \ + git fetch && \ git checkout v3.0.0-alpha-3.1 && \ ./autogen.sh && \ CXXFLAGS=-m32 ./configure --disable-shared --prefix=/protobuf-32 && \