summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2022-04-22 09:07:16 +0200
committerLukas Larsson <lukas@erlang.org>2022-04-22 09:07:16 +0200
commit3a898e9ca8be31e7147954539800fe8bbdf6d6dd (patch)
tree18599235de880e0d6f8d18b3371adcde80cb08d8 /.github
parent151736e2527e946d4bb15bc355e281b4dd350d85 (diff)
downloaderlang-3a898e9ca8be31e7147954539800fe8bbdf6d6dd.tar.gz
gh: Fix ubuntu base to use base argument
Diffstat (limited to '.github')
-rw-r--r--.github/dockerfiles/Dockerfile.ubuntu-base3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/dockerfiles/Dockerfile.ubuntu-base b/.github/dockerfiles/Dockerfile.ubuntu-base
index 55983f296a..dc26a9a5b1 100644
--- a/.github/dockerfiles/Dockerfile.ubuntu-base
+++ b/.github/dockerfiles/Dockerfile.ubuntu-base
@@ -1,7 +1,8 @@
##
## This docker file will build a base image for building Erlang/OTP
##
-FROM ubuntu
+ARG BASE=ubuntu:20.04
+FROM $BASE
ENV INSTALL_LIBS="zlib1g-dev libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxbase3.0-dev libwxgtk3.0-gtk3-dev libsctp-dev lksctp-tools"