mirror of
https://github.com/apache/druid.git
synced 2025-02-20 17:11:47 +00:00
* IT: Switch to OpenJDK8 base image. Also split the Docker image into a base image and a child image, and build the base image ahead of time for efficiency's sake. Also upgrade ZK to 3.4.10. * Additional comments about ZK upgrades.
8 lines
246 B
Docker
8 lines
246 B
Docker
FROM ubuntu:16.04
|
|
|
|
# Bundle everything into one script so cleanup can reduce image size.
|
|
# Otherwise docker's layered images mean that things are not actually deleted.
|
|
|
|
COPY setup.sh /root/setup.sh
|
|
RUN chmod 0755 /root/setup.sh && /root/setup.sh
|