Skip to content

Commit 3047b08

Browse files
authored
v3.4 release (#17)
* v3.4 release * v3.4 release
1 parent 36b56dd commit 3047b08

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

3/bookworm/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN mkdir /docker-entrypoint-initdb.d
2121

2222
# Set environment variables for IvorySQL
2323
ENV IVORY_MAJOR 3
24-
ENV IVORY_VERSION 3.3
24+
ENV IVORY_VERSION 3.4
2525
ARG USE_CHINA_MIRROR=false
2626

2727
# Use China mirror if specified
@@ -106,8 +106,7 @@ RUN rm -rf \
106106
/usr/local/share/man
107107

108108
RUN chown -R ivorysql:ivorysql /var/local/ivorysql/ivorysql-$IVORY_MAJOR
109-
RUN dpkgArch="$(dpkg --print-architecture)"; # amd64 | arm64v8
110-
RUN curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.11/gosu-$dpkgArch"
109+
RUN wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/1.11/gosu-$(dpkg --print-architecture)" # amd64 | arm64v8
111110

112111
RUN chmod +x /usr/local/bin/gosu
113112

@@ -117,7 +116,7 @@ COPY --from=builder /var/local/ivorysql /var/local/ivorysql/
117116
COPY --from=builder /usr/local/bin/gosu /usr/local/bin/gosu
118117

119118
ENV IVORY_MAJOR 3
120-
ENV IVORY_VERSION 3.3
119+
ENV IVORY_VERSION 3.4
121120
ARG USE_CHINA_MIRROR=false
122121
RUN mkdir /docker-entrypoint-initdb.d
123122

3/ubi8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN groupadd -g 1000 ivorysql; \
1919
RUN mkdir /docker-entrypoint-initdb.d
2020

2121
ENV IVORY_MAJOR 3
22-
ENV IVORY_VERSION 3.3
22+
ENV IVORY_VERSION 3.4
2323

2424
RUN curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo; \
2525
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
@@ -81,7 +81,7 @@ COPY --from=builder /var/local/ivorysql /var/local/ivorysql/
8181
COPY --from=builder /usr/local/bin/gosu /usr/local/bin/gosu
8282

8383
ENV IVORY_MAJOR 3
84-
ENV IVORY_VERSION 3.3
84+
ENV IVORY_VERSION 3.4
8585

8686
RUN mkdir /docker-entrypoint-initdb.d
8787

Dockerfile-debian.template

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ RUN rm -rf \
100100
/usr/local/share/man
101101

102102
RUN chown -R ivorysql:ivorysql /var/local/ivorysql/ivorysql-$IVORY_MAJOR
103-
RUN dpkgArch="$(dpkg --print-architecture)"; # amd64 | arm64v8
104-
RUN curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.11/gosu-$dpkgArch"
103+
RUN wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/1.11/gosu-$(dpkg --print-architecture)" # amd64 | arm64v8
105104

106105
RUN chmod +x /usr/local/bin/gosu
107106

versions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"arches": [
55
"amd64"
66
],
7-
"version": "3.3"
7+
"version": "3.4"
88
},
99
"redhat": "ubi8",
1010
"debian": "bookworm",
@@ -13,13 +13,13 @@
1313
"amd64",
1414
"arm64v8"
1515
],
16-
"version": "3.3"
16+
"version": "3.4"
1717
},
1818
"major": 3,
1919
"variants": [
2020
"ubi8",
2121
"bookworm"
2222
],
23-
"version": "3.3"
23+
"version": "3.4"
2424
}
2525
}

0 commit comments

Comments
 (0)