ibm-information-center/Dockerfile

14 lines
221 B
Docker
Raw Permalink Normal View History

2024-04-02 14:24:33 +00:00
FROM ubuntu:22.04
2024-04-02 14:37:38 +00:00
EXPOSE 4411
2024-04-02 14:24:33 +00:00
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"]