Skip to content

Commit c016023

Browse files
committedMar 30, 2025·
feat: update the version to 1.1.8
1 parent c0e1a56 commit c016023

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ RUN curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x8
1515

1616
# install opensourcecobol4j
1717
RUN cd /root &&\
18-
curl -L -o opensourcecobol4j-v1.1.7.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7.tar.gz &&\
19-
tar zxvf opensourcecobol4j-v1.1.7.tar.gz &&\
20-
cd opensourcecobol4j-1.1.7 &&\
18+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz &&\
19+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz &&\
20+
cd opensourcecobol4j-1.1.8 &&\
2121
./configure --prefix=/usr/ &&\
2222
make &&\
2323
make install &&\
24-
rm /root/opensourcecobol4j-v1.1.7.tar.gz
24+
rm /root/opensourcecobol4j-v1.1.8.tar.gz
2525

2626
# Install Open COBOL ESQL 4J
2727
ENV PATH="$PATH:/root/.local/share/coursier/bin"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Versions :
55

66
- OS: Ubuntu
7-
- opensource COBOL 4J: v1.1.7
7+
- opensource COBOL 4J: v1.1.8
88
- Open COBOL ESQL 4J: v1.1.1
99

1010
In order to "Hello World" program, run the following commands in the docker container

‎utf8.Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ RUN curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x8
1515

1616
# install opensourcecobol4j
1717
RUN cd /root &&\
18-
curl -L -o opensourcecobol4j-v1.1.7.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7.tar.gz &&\
19-
tar zxvf opensourcecobol4j-v1.1.7.tar.gz &&\
20-
cd opensourcecobol4j-1.1.7 &&\
18+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz &&\
19+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz &&\
20+
cd opensourcecobol4j-1.1.8 &&\
2121
./configure --prefix=/usr/ --enable-utf8 &&\
2222
touch cobj/*.m4 &&\
2323
make &&\
2424
make install &&\
25-
rm /root/opensourcecobol4j-v1.1.7.tar.gz
25+
rm /root/opensourcecobol4j-v1.1.8.tar.gz
2626

2727
# add sample programs
2828
ADD cobol_sample /root/cobol_sample

0 commit comments

Comments
 (0)
Please sign in to comment.