Yvan Janssens
d43fcb9ecb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
14 lines
221 B
Docker
14 lines
221 B
Docker
FROM ubuntu:22.04
|
|
|
|
EXPOSE 4411
|
|
|
|
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"]
|