Overhaul CI pipeline to use a custom Ubuntu-based Docker image.
This commit is contained in:
parent
12443b0159
commit
be3457abeb
2 changed files with 25 additions and 16 deletions
10
Dockerfile.ci
Normal file
10
Dockerfile.ci
Normal file
|
@ -0,0 +1,10 @@
|
|||
# This image is built by the Gitlab CI pipeline to be used in subsequent
|
||||
# pipeline steps.
|
||||
|
||||
FROM ubuntu:focal
|
||||
|
||||
# tell apt not to ask for any user input
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install --yes --no-install-recommends make gcc-10 libedit-dev libasan6 libubsan1 python3 python3-yaml lcov asciidoc libxslt1.1 pkg-config docbook-xml xsltproc
|
Loading…
Add table
Add a link
Reference in a new issue