We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14ccca3 + 0554ee0 commit 19ac0caCopy full SHA for 19ac0ca
Dockerfile
@@ -4,7 +4,10 @@ WORKDIR /root
4
5
ENV DEBIAN_FRONTEND=noninteractive
6
7
-RUN apt update -qq && apt install -y \
+RUN apt update && apt install -y ca-certificates
8
+RUN sed -i 's/archive.ubuntu.com/mirror.yandex.ru/g' /etc/apt/sources.list
9
+
10
+RUN apt update -qq -o Acquire::AllowInsecureRepositories=true && apt install -y --no-install-recommends --allow-unauthenticated \
11
openjdk-8-jdk maven postgresql-client && \
12
apt remove -y openjdk-11-jre-headless
13
0 commit comments