mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-29 18:38:34 +08:00
24 lines
815 B
Docker
24 lines
815 B
Docker
FROM maven:3.6-jdk-8-alpine
|
|
|
|
ARG LOCAL_MAVEN_MIRROR=http://maven.aliyun.com/nexus/content/groups/public/
|
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
|
|
ENV MAVEN_SETING_FILE=/usr/share/maven/conf/settings.xml
|
|
|
|
VOLUME /var/maven/repository
|
|
|
|
# Install base packages
|
|
RUN apk --no-cache update && \
|
|
apk --no-cache upgrade && \
|
|
apk --no-cache add tzdata unzip git && \
|
|
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
echo "Asia/Shanghai" > /etc/timezone && \
|
|
rm -fr /tmp/* /var/cache/apk/*
|
|
|
|
COPY settings.xml ${MAVEN_SETING_FILE}
|
|
# override default maven docker configuration
|
|
RUN cat /usr/share/maven/conf/settings.xml > /usr/share/maven/ref/settings-docker.xml
|
|
RUN mkdir -p /root/.m2 && cp /usr/share/maven/conf/settings.xml /root/.m2/settings.xml
|
|
|