Skip to content

Commit 4852d8d

Browse files
committed
docker: don't take BASE as an argument
The xenial image depends on ubuntu:xenial; the bionic one on ubuntu:bionic. No need for this to be a variable, that's just additional (unnecessary) state to manage in the CI setup(s).
1 parent 8b8b69a commit 4852d8d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

azure-pipelines/docker/bionic

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
ARG BASE
2-
FROM $BASE AS apt
1+
FROM ubuntu:bionic AS apt
32
RUN apt-get update && \
43
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
54
clang \

azure-pipelines/docker/xenial

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
ARG BASE
2-
FROM $BASE AS apt
1+
FROM ubuntu:xenial AS apt
32
RUN apt-get update && \
43
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
54
bzip2 \

0 commit comments

Comments
 (0)