From 9a3bc5bdcb30d4829d55c15d11dfeaa166bacd3d Mon Sep 17 00:00:00 2001 From: yutaro-sakamoto <80912876+yutaro-sakamoto@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:58:01 +0900 Subject: [PATCH] [Update]: update the version number (#13) Co-authored-by: Yutaro Sakamoto --- 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 d984650..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.21.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.21.tar.gz &&\ - tar zxvf opensourcecobol4j-v1.0.21.tar.gz &&\ - cd opensourcecobol4j-1.0.21 &&\ + 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.21.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 88eadee..5e1ec5a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Versions : - OS: Ubuntu -- opensource COBOL 4J: v1.0.21 +- 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 bd24554..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.21 + image: opensourcecobol/opensourcecobol4j:1.0.22 container_name: oc4j_client stdin_open: true tty: true