Giter Club home page Giter Club logo

Comments (3)

inductor avatar inductor commented on September 27, 2024

Changing some codes, I could make it to 451MB, but because the confluent tar file is already over 300MB, I do not think there's much to do with it.

I'll show you what I did there anyway...!

FYI, if you don't install bash in alpine and just use ash, the image becomes 447MB.

FROM openjdk:8

ENV CONFLUENT_URL=http://packages.confluent.io/archive/5.1/confluent-community-5.1.0-2.11.tar.gz
ENV CONFLUENT_TMP_DEST=/opt/confluent.tgz
ENV CONFLUENT_WORKDIR=/opt/confluent

RUN wget $CONFLUENT_URL -O ${CONFLUENT_TMP_DEST} && \
    mkdir -p ${CONFLUENT_WORKDIR} && \
    tar -xvzpf ${CONFLUENT_TMP_DEST} --strip-components=1 -C ${CONFLUENT_WORKDIR} && \
    rm -rf /opt/confluent/share/doc /opt/confluent/src /opt/confluent/lib

FROM openjdk:8-jre-alpine
RUN apk add --no-cache bash

COPY --from=0 /opt/confluent /opt/confluent
COPY run /opt/confluent/bin/run
ENV PATH /opt/confluent/bin:$PATH

WORKDIR [ "/opt/confluent/bin" ]
ENTRYPOINT [ "tail", "-f", "/dev/null" ]

from confluent-tools.

inductor avatar inductor commented on September 27, 2024

@devshawn

from confluent-tools.

devshawn avatar devshawn commented on September 27, 2024

@inductor - sorry, I totally missed this... been quite busy. Thanks for looking into this! I'll likely just leave it as is since we don't save much space anyway.

from confluent-tools.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.