Add dockerfile and start.sh file
This commit is contained in:
parent
14ed2849c6
commit
0332907f0f
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
FROM ubuntu:22.04
|
||||||
|
|
||||||
|
|
||||||
|
ENV TZ="Europe/Brussels"
|
||||||
|
ENV DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
RUN apt update -y && apt install -y openjdk-8-jdk bash
|
||||||
|
|
||||||
|
COPY dist/eclipse /eclipse
|
||||||
|
COPY start.sh /start.sh
|
||||||
|
|
||||||
|
CMD ["/start.sh"]
|
5
start.sh
Executable file
5
start.sh
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd /eclipse
|
||||||
|
|
||||||
|
/usr/lib/jvm/java-8-openjdk-amd64/bin/java -classpath ./plugins/org.eclipse.help.base_3.0.1/helpbase.jar org.eclipse.help.standalone.Infocenter -eclipsehome /eclipse -data workspace -plugincustomization ./plugins/i5OS.ic.rzari_5.4.0.1/plugin_customization.ini -port 4411 -command start -noexec
|
Loading…
Reference in New Issue
Block a user