For some reason, Bison is not implicitly installed along with the other dependencies in the Ubuntu 18.04 image used for continuous integration. This adds Bison explicitly.
11 lines
260 B
Plaintext
11 lines
260 B
Plaintext
FROM ubuntu:18.04
|
|
|
|
ARG toolchain
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y bison cmake git ninja-build re2c
|
|
RUN if [ "${toolchain}" = "gcc" ]; then apt-get install -y g++; fi
|
|
RUN if [ "${toolchain}" = "clang" ]; then apt-get install -y clang; fi
|
|
|
|
VOLUME /app
|