You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN source "$HOME/.sdkman/bin/sdkman-init.sh" && mvn -P native clean package
23
+
24
+
# run stage
25
+
FROM centos:7.8.2003
26
+
ARG MAXMIND_LICENSE_KEY
6
27
7
28
# download current maxmind databases
8
29
WORKDIR /srv
9
-
RUN curl -sSL "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&suffix=tar.gz&license_key=${MAXMIND_LICENSE_KEY}" | tar -xz && \
30
+
#RUN apk add curl && \
31
+
RUN yum install -y tar gzip && \
32
+
curl -sfSL "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&suffix=tar.gz&license_key=${MAXMIND_LICENSE_KEY}" | tar -xz && \
0 commit comments