Skip to content

Commit

Permalink
v3.4 release (IvorySQL#17)
Browse files Browse the repository at this point in the history
* v3.4 release

* v3.4 release
  • Loading branch information
balinorLiang authored Sep 26, 2024
1 parent 36b56dd commit 3047b08
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
7 changes: 3 additions & 4 deletions 3/bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN mkdir /docker-entrypoint-initdb.d

# Set environment variables for IvorySQL
ENV IVORY_MAJOR 3
ENV IVORY_VERSION 3.3
ENV IVORY_VERSION 3.4
ARG USE_CHINA_MIRROR=false

# Use China mirror if specified
Expand Down Expand Up @@ -106,8 +106,7 @@ RUN rm -rf \
/usr/local/share/man

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

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

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

ENV IVORY_MAJOR 3
ENV IVORY_VERSION 3.3
ENV IVORY_VERSION 3.4
ARG USE_CHINA_MIRROR=false
RUN mkdir /docker-entrypoint-initdb.d

Expand Down
4 changes: 2 additions & 2 deletions 3/ubi8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN groupadd -g 1000 ivorysql; \
RUN mkdir /docker-entrypoint-initdb.d

ENV IVORY_MAJOR 3
ENV IVORY_VERSION 3.3
ENV IVORY_VERSION 3.4

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

ENV IVORY_MAJOR 3
ENV IVORY_VERSION 3.3
ENV IVORY_VERSION 3.4

RUN mkdir /docker-entrypoint-initdb.d

Expand Down
3 changes: 1 addition & 2 deletions Dockerfile-debian.template
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ RUN rm -rf \
/usr/local/share/man

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

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

Expand Down
6 changes: 3 additions & 3 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"arches": [
"amd64"
],
"version": "3.3"
"version": "3.4"
},
"redhat": "ubi8",
"debian": "bookworm",
Expand All @@ -13,13 +13,13 @@
"amd64",
"arm64v8"
],
"version": "3.3"
"version": "3.4"
},
"major": 3,
"variants": [
"ubi8",
"bookworm"
],
"version": "3.3"
"version": "3.4"
}
}

0 comments on commit 3047b08

Please sign in to comment.