Skip to content

Commit c635a68

Browse files
authored
deps: replace centos by rockylinux (#19)
closes #17 - [x] use rockylinux instead of centos since RHEL EOL issues and a true RHEL drop-in solution. - [x] add missing libnsl dependency for sybase
1 parent 90fff72 commit c635a68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM centos:7 as base
1+
FROM rockylinux:9 as base
22
FROM base as builder
33

44
ADD https://d1cuw2q49dpd0p.cloudfront.net/ASE16/Current/ASE_Suite.linuxamd64.tgz /tmp/ASE/ASE_Suite.linuxamd64.tgz
@@ -7,7 +7,7 @@ COPY ./sybase_response.txt /tmp/ASE
77

88
FROM base as basedeps
99
RUN yum update -y \
10-
&& yum install -y libaio net-tools nc \
10+
&& yum install -y libaio net-tools nc libnsl.x86_64 \
1111
&& yum clean all
1212

1313
FROM basedeps as setup

0 commit comments

Comments
 (0)