Skip to content

Commit de05438

Browse files
committed
fix(docker): add unixodbc and odbcinst to package installation in Dockerfiles
1 parent 9b70319 commit de05438

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/sling/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:jammy
22

33
RUN groupadd -r sling && useradd -r -g sling sling
44

5-
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y unzip libaio1 postgresql-client wget curl gnupg2 && \
5+
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y unzip libaio1 postgresql-client wget curl gnupg2 unixodbc odbcinst && \
66
apt-get clean && \
77
rm -rf /var/lib/apt/lists /var/cache/apt
88

cmd/sling/Dockerfile.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=linux/arm64 ubuntu:jammy
22

33
RUN groupadd -r sling && useradd -r -g sling sling
44

5-
RUN apt update || true && DEBIAN_FRONTEND=noninteractive apt install -y libaio1 postgresql-client wget curl && apt clean && rm -rf /var/lib/apt/lists /var/cache/apt
5+
RUN apt update || true && DEBIAN_FRONTEND=noninteractive apt install -y libaio1 postgresql-client wget curl unixodbc odbcinst && apt clean && rm -rf /var/lib/apt/lists /var/cache/apt
66

77
# Install Oracle Instant Client
88
RUN cd /tmp && \

0 commit comments

Comments
 (0)