File tree 1 file changed +3
-2
lines changed
docker-compose-for-compiler-developers 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ RUN apt-get update &&\
11
11
12
12
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
13
13
14
- # install SQLite JDBC driver
14
+ # install JDBC drivers
15
15
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 &&\
17
17
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
18
18
19
19
# install opensourcecobol4j
@@ -31,6 +31,7 @@ RUN cd /root &&\
31
31
git clone https://github.com/opensourcecobol/Open-COBOL-ESQL-4j.git &&\
32
32
cd Open-COBOL-ESQL-4j &&\
33
33
cp /usr/lib/opensourcecobol4j/libcobj.jar dblibj/lib &&\
34
+ cp /usr/lib/Open-COBOL-ESQL-4j/postgresql.jar dblibj/lib &&\
34
35
./configure --prefix=/usr/ &&\
35
36
make &&\
36
37
make install
You can’t perform that action at this time.
0 commit comments