From 4bf5ed8e2ad7721c1dad7a705053685942de6175 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Sun, 1 Dec 2024 16:38:28 +0900 Subject: [PATCH] change: the version of opensource COBOL 4J --- Dockerfile | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 46dd0c8..7ae8eca 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.4.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.4.tar.gz &&\ + tar zxvf opensourcecobol4j-v1.1.4.tar.gz &&\ + cd opensourcecobol4j-1.1.4 &&\ ./configure --prefix=/usr/ &&\ make &&\ make install &&\ - rm /root/opensourcecobol4j-v1.1.3.tar.gz + rm /root/opensourcecobol4j-v1.1.4.tar.gz # Install Open COBOL ESQL 4J ENV PATH="$PATH:/root/.local/share/coursier/bin" diff --git a/README.md b/README.md index 9292479..dad2b66 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.4 - Open COBOL ESQL 4J: v1.1.1 In order to "Hello World" program, run the following commands in the docker container