12 lines
493 B
Docker
Executable File
12 lines
493 B
Docker
Executable File
FROM docker.psi.ch:5000/busybox_java
|
|
#COPY ./pshell-1.7.0-fat.jar /pshell/
|
|
RUN cd /
|
|
RUN mkdir pshell
|
|
RUN cd /pshell
|
|
RUN wget -O /pshell/pshell-1.7.0-fat.jar http://artifacts.psi.ch/artifactory/releases/ch/psi/pshell/1.7.0/pshell-1.7.0-fat.jar --no-check-certificate
|
|
#RUN ls /pshell
|
|
|
|
#COPY ./home/ /pshell/home/
|
|
EXPOSE 5000-10000
|
|
|
|
CMD ls -al /pshell/home/log; while true; do echo "Starting";java -Djava.awt.headless=true -jar /pshell/pshell-1.7.0-fat.jar -v -home=/pshell/home -clog=FINE; done |