From ca3166b1675f6cc78914a01aa559e9b820ca752a Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Fri, 29 Mar 2024 11:14:15 +0900 Subject: [PATCH] [Update]: update Dockerfile and README.md --- Dockerfile | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03a9609..d984650 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.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 &&\ ./configure --prefix=/usr/ &&\ make &&\ make install &&\ - rm ../opensourcecobol4j-v1.0.20.tar.gz + rm ../opensourcecobol4j-v1.0.21.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..88eadee 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.21 - Open COBOL ESQL 4J: v1.0.3 In order to "Hello World" program, run the following commands in the docker container