Skip to content

Commit 9ef2864

Browse files
[Fix]: fix Dockerfile for developers
1 parent 14da7bd commit 9ef2864

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docker-compose-for-compiler-developers/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ RUN apt-get update &&\
1111

1212
ENV CLASSPATH :/usr/lib/opensourcecobol4j/sqlite.jar:/usr/lib/opensourcecobol4j/libcobj.jar:/usr/lib/Open-COBOL-ESQL-4j/ocesql4j.jar:/usr/lib/Open-COBOL-ESQL-4j/postgresql.jar
1313

14-
# install SQLite JDBC driver
14+
# install JDBC drivers
1515
RUN mkdir -p /usr/lib/opensourcecobol4j /usr/lib/Open-COBOL-ESQL-4j &&\
16-
curl -L -o /usr/lib/Open-COBOL-ESQL-4j/postgresql.jar -k https://jdbc.postgresql.org/download/postgresql-42.2.24.jre6.jar &&\
16+
curl -L -o /usr/lib/Open-COBOL-ESQL-4j/postgresql.jar -k https://jdbc.postgresql.org/download/postgresql-42.2.24.jar &&\
1717
curl -L -o /usr/lib/opensourcecobol4j/sqlite.jar -k https://github.com/xerial/sqlite-jdbc/releases/download/3.36.0.3/sqlite-jdbc-3.36.0.3.jar
1818

1919
# install opensourcecobol4j
@@ -31,6 +31,7 @@ RUN cd /root &&\
3131
git clone https://github.com/opensourcecobol/Open-COBOL-ESQL-4j.git &&\
3232
cd Open-COBOL-ESQL-4j &&\
3333
cp /usr/lib/opensourcecobol4j/libcobj.jar dblibj/lib &&\
34+
cp /usr/lib/Open-COBOL-ESQL-4j/postgresql.jar dblibj/lib &&\
3435
./configure --prefix=/usr/ &&\
3536
make &&\
3637
make install

0 commit comments

Comments
 (0)