Skip to content

Commit 32c6a06

Browse files
authored
fix arm-link and rev version (#170)
Signed-off-by: Mark Nelson <mark.x.nelson@oracle.com>
1 parent c25920a commit 32c6a06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN if [ "$GOARCH" = "amd64" ]; then \
4848
microdnf install wget libaio && \
4949
wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basic-linux-arm64.rpm && \
5050
rpm -ivh instantclient-basic-linux-arm64.rpm && \
51-
ln -s /usr/lib/oracle/19.24 /usr/lib/oracle/23 && \
51+
ln -s /usr/lib/oracle/19.24 /usr/lib/oracle/21 && \
5252
microdnf install glibc-2.28-251.0.2.el8_10.4 \
5353
; fi
5454

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OS_TYPE ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
33
ARCH_TYPE ?= $(subst x86_64,amd64,$(patsubst i%86,386,$(ARCH)))
44
GOOS ?= $(shell go env GOOS)
55
GOARCH ?= $(shell go env GOARCH)
6-
VERSION ?= 1.5.2
6+
VERSION ?= 1.5.3
77
LDFLAGS := -X main.Version=$(VERSION)
88
GOFLAGS := -ldflags "$(LDFLAGS) -s -w"
99
BUILD_ARGS = --build-arg VERSION=$(VERSION)

0 commit comments

Comments
 (0)