There was an error while loading. Please reload this page.
1 parent f9320c7 commit 48fdb08Copy full SHA for 48fdb08
1 file changed
infra/docker/ci/Dockerfile
@@ -3,8 +3,12 @@ FROM ubuntu:18.04
3
ARG REVISION
4
ENV DEBIAN_FRONTEND=noninteractive
5
6
+RUN apt-get update && apt-get install -y curl unzip locales software-properties-common && \
7
+ apt-add-repository ppa:git-core/ppa && \
8
+ apt update && apt install -y git
9
+
10
# Install Java (by default openjdk-11)
-RUN apt-get update && apt-get install -y default-jdk curl unzip git locales
11
+RUN apt-get install -y default-jdk
12
13
RUN locale-gen en_US.UTF-8 && update-locale LANG=en_US.utf8
14
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
0 commit comments