Skip to content

Commit e2683f5

Browse files
committed
Update Dockerfile to pull SPIRV-Headers before building.
1 parent 48d33e7 commit e2683f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ FROM alpine
1717
MAINTAINER Google Shaderc Team
1818

1919
RUN apk add --update \
20-
bison \
2120
build-base \
2221
cmake \
2322
git \
@@ -29,9 +28,10 @@ RUN apk add --update \
2928
WORKDIR /root
3029
RUN git clone https://github.com/google/shaderc
3130
WORKDIR shaderc
32-
RUN git clone https://github.com/google/googletest.git third_party/googletest
33-
RUN git clone https://github.com/google/glslang.git third_party/glslang
34-
RUN git clone https://github.com/KhronosGroup/SPIRV-Tools.git third_party/spirv-tools
31+
RUN git clone https://github.com/google/googletest.git third_party/googletest
32+
RUN git clone https://github.com/google/glslang.git third_party/glslang
33+
RUN git clone https://github.com/KhronosGroup/SPIRV-Tools.git third_party/spirv-tools
34+
RUN git clone https://github.com/KhronosGroup/SPIRV-Headers.git third_party/spirv-tools/external/spirv-headers
3535

3636
WORKDIR build
3737
RUN cmake -GNinja \

0 commit comments

Comments
 (0)