From 54e5770c19d882946f0005d686d07e2a5a34b64f Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Fri, 27 Dec 2024 14:19:23 +0900 Subject: [PATCH 1/2] update: opensource COBOL 4J 1.1.5 --- Dockerfile | 8 ++++---- docker-compose/docker-compose.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46dd0c8..99e8a19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,13 +15,13 @@ RUN curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x8 # install opensourcecobol4j RUN cd /root &&\ - curl -L -o opensourcecobol4j-v1.1.3.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.3.tar.gz &&\ - tar zxvf opensourcecobol4j-v1.1.3.tar.gz &&\ - cd opensourcecobol4j-1.1.3 &&\ + curl -L -o opensourcecobol4j-v1.1.5.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.5.tar.gz &&\ + tar zxvf opensourcecobol4j-v1.1.5.tar.gz &&\ + cd opensourcecobol4j-1.1.5 &&\ ./configure --prefix=/usr/ &&\ make &&\ make install &&\ - rm /root/opensourcecobol4j-v1.1.3.tar.gz + rm /root/opensourcecobol4j-v1.1.5.tar.gz # Install Open COBOL ESQL 4J ENV PATH="$PATH:/root/.local/share/coursier/bin" diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index b47987a..fc3c4a9 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -12,7 +12,7 @@ services: - "5432:5432" oc4j_client: - image: opensourcecobol/opensourcecobol4j:20241031 + image: opensourcecobol/opensourcecobol4j:20241227 container_name: oc4j_client stdin_open: true tty: true From 0041c4139122135fb101f41cb78cbd40f552fcd7 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Fri, 27 Dec 2024 14:21:34 +0900 Subject: [PATCH 2/2] doc: update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9292479..915b99c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Versions : - OS: Ubuntu -- opensource COBOL 4J: v1.1.3 +- opensource COBOL 4J: v1.1.5 - Open COBOL ESQL 4J: v1.1.1 In order to "Hello World" program, run the following commands in the docker container