From b28bb06f815f743b946607acf8e2568866b94904 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Fri, 31 May 2024 17:53:40 +0900 Subject: [PATCH] [WIP]: wip --- Dockerfile | 10 +++++----- docker-compose-for-compiler-developers/Dockerfile | 2 +- docker-compose/docker-compose.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc8d29c..2098257 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 SHELL ["/bin/bash", "-c"] @@ -17,13 +17,13 @@ RUN apt-get update && apt-get install -y sbt # install opensourcecobol4j RUN cd /root &&\ - 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 &&\ + curl -L -o opensourcecobol4j-v1.1.0.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.0.tar.gz &&\ + tar zxvf opensourcecobol4j-v1.1.0.tar.gz &&\ + cd opensourcecobol4j-1.1.0 &&\ ./configure --prefix=/usr/ &&\ make &&\ make install &&\ - rm ../opensourcecobol4j-v1.0.22.tar.gz + rm ../opensourcecobol4j-v1.1.0.tar.gz # Install Open COBOL ESQL 4J RUN mkdir -p /usr/lib/Open-COBOL-ESQL-4j &&\ diff --git a/docker-compose-for-compiler-developers/Dockerfile b/docker-compose-for-compiler-developers/Dockerfile index 48c25ee..6cbc18e 100644 --- a/docker-compose-for-compiler-developers/Dockerfile +++ b/docker-compose-for-compiler-developers/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 SHELL ["/bin/bash", "-c"] diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 4fa4a87..2315563 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.22 + image: opensourcecobol/opensourcecobol4j:1.1.0 container_name: oc4j_client stdin_open: true tty: true