From f7dbe9145d90cbd096a143041e821f4ad3386b99 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Tue, 30 Apr 2024 15:43:35 +0900 Subject: [PATCH] [Update]: update the version number --- Dockerfile | 8 ++++---- README.md | 2 +- docker-compose/docker-compose.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03a9609..cc8d29c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,13 +17,13 @@ RUN apt-get update && apt-get install -y sbt # install opensourcecobol4j RUN cd /root &&\ - curl -L -o opensourcecobol4j-v1.0.20.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.20.tar.gz &&\ - tar zxvf opensourcecobol4j-v1.0.20.tar.gz &&\ - cd opensourcecobol4j-1.0.20 &&\ + curl -L -o opensourcecobol4j-v1.0.22.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.22.tar.gz &&\ + tar zxvf opensourcecobol4j-v1.0.22.tar.gz &&\ + cd opensourcecobol4j-1.0.22 &&\ ./configure --prefix=/usr/ &&\ make &&\ make install &&\ - rm ../opensourcecobol4j-v1.0.20.tar.gz + rm ../opensourcecobol4j-v1.0.22.tar.gz # Install Open COBOL ESQL 4J RUN mkdir -p /usr/lib/Open-COBOL-ESQL-4j &&\ diff --git a/README.md b/README.md index e7deeb0..5e1ec5a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Versions : - OS: Ubuntu -- opensource COBOL 4J: v1.0.20 +- opensource COBOL 4J: v1.0.22 - Open COBOL ESQL 4J: v1.0.3 In order to "Hello World" program, run the following commands in the docker container diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 76d6a72..4fa4a87 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:1.0.18 + image: opensourcecobol/opensourcecobol4j:1.0.22 container_name: oc4j_client stdin_open: true tty: true