Skip to content

Commit 4a78f48

Browse files
Remove unnecessary files (#22)
* chore: remove unnecessary files in Dockerfile * chore: remove docker-compose-for-compiler-developers
1 parent 903f89a commit 4a78f48

File tree

5 files changed

+4
-104
lines changed

5 files changed

+4
-104
lines changed

.github/workflows/docker-compose-for-compiler-developers.yml

-17
This file was deleted.

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM almalinux:9
33
SHELL ["/bin/bash", "-c"]
44

55
# classpath settings
6-
ENV CLASSPATH :/usr/lib/opensourcecobol4j/libcobj.jar:/usr/lib/Open-COBOL-ESQL-4j/postgresql.jar:/usr/lib/opensourcecobol4j/ocesql4j.jar
6+
ENV CLASSPATH=:/usr/lib/opensourcecobol4j/libcobj.jar:/usr/lib/Open-COBOL-ESQL-4j/postgresql.jar:/usr/lib/opensourcecobol4j/ocesql4j.jar
77
RUN echo 'export CLASSPATH=:/usr/lib/opensourcecobol4j/libcobj.jar:/usr/lib/Open-COBOL-ESQL-4j/postgresql.jar:/usr/lib/Open-COBOL-ESQL-4j/ocesql4j.jar' >> ~/.bashrc
88

99
# install dependencies
@@ -21,7 +21,7 @@ RUN cd /root &&\
2121
./configure --prefix=/usr/ &&\
2222
make &&\
2323
make install &&\
24-
rm ../opensourcecobol4j-v1.1.3.tar.gz
24+
rm /root/opensourcecobol4j-v1.1.3.tar.gz
2525

2626
# Install Open COBOL ESQL 4J
2727
ENV PATH="$PATH:/root/.local/share/coursier/bin"
@@ -37,7 +37,8 @@ RUN mkdir -p /usr/lib/Open-COBOL-ESQL-4j &&\
3737
cp /usr/lib/Open-COBOL-ESQL-4j/postgresql.jar dblibj/lib &&\
3838
./configure --prefix=/usr/ &&\
3939
make &&\
40-
make install
40+
make install &&\
41+
rm -rf /root/Open-COBOL-ESQL-4j-1.1.1
4142

4243
# add sample programs
4344
ADD cobol_sample /root/cobol_sample

README.md

-12
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,4 @@ cd /root/ocesql4j_sample
3232
make
3333
```
3434

35-
## Docker containers for compiler developers
36-
37-
In order to launch the development environment with a database server and a client with opensource COBOL 4J Open COBOL ESQL 4J installed, run the following command.
38-
39-
```bash
40-
cd docker-compose-compose-for-compiler-developers
41-
docker compose up -d
42-
docker attach oc4j_client
43-
```
44-
45-
The container is for developers opensource COBOL 4J and Open COBOL ESQL 4J, not users of them.
46-
4735
Copyright 2021-2024, Tokyo System House Co., Ltd. <opencobol@tsh-world.co.jp>

docker-compose-for-compiler-developers/Dockerfile

-44
This file was deleted.

docker-compose-for-compiler-developers/docker-compose.yml

-28
This file was deleted.

0 commit comments

Comments
 (0)