File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ ENV JAVA_HOME /opt/openjdk
9
9
ENV PATH $JAVA_HOME/bin:$PATH
10
10
ADD docker-lib.sh /docker-lib.sh
11
11
12
- # ADD build-release-scripts.sh /build-release-scripts.sh
13
- # ADD releasescripts /release-scripts
14
- # RUN ./build-release-scripts.sh
12
+ ADD build-release-scripts.sh /build-release-scripts.sh
13
+ ADD releasescripts /release-scripts
14
+ RUN ./build-release-scripts.sh
15
15
16
16
# INSTALL MAVEN
17
17
ARG MAVEN_VERSION=3.6.3
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -ex
3
+
4
+ pushd /release-scripts
5
+ ./mvnw clean install
6
+ popd
7
+ cp /release-scripts/target/spring-boot-release-scripts.jar .
Original file line number Diff line number Diff line change 7
7
8
8
export DEBIAN_FRONTEND=noninteractive
9
9
apt-get update
10
- apt-get install --no-install-recommends -y git curl jq tzdata # tzdata ca-certificates net-tools libxml2-utils git curl libudev1 libxml2-utils iptables iproute2 jq
10
+ apt-get install --no-install-recommends -y git curl jq tzdata ca-certificates # tzdata ca-certificates net-tools libxml2-utils git curl libudev1 libxml2-utils iptables iproute2 jq
11
11
ln -fs /usr/share/zoneinfo/UTC /etc/localtime
12
12
dpkg-reconfigure --frontend noninteractive tzdata
13
13
rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments