Code Monkey home page Code Monkey logo

Comments (2)

jshimko avatar jshimko commented on June 7, 2024

You can add anything you need to your own Dockerfile. Definitely doesn't need to be included in this image. Just add a RUN directive to your Dockerfile.

FROM jshimko/meteor-launchpad:latest

# add whatever required steps you need
RUN ./install-jdbc-driver.sh

I can't help much with the specific steps for the Oracle stuff (I'm sure it's painful), but the process of adding additional dependencies to your image should be pretty straightforward. You can create a script, add everything you need, and then run it at build time by doing what you see in the example above.

from meteor-launchpad.

maasha avatar maasha commented on June 7, 2024

I have solved the problem with the following:

FROM jshimko/meteor-launchpad:latest

# Oracle instant client dependencies
RUN apt-get update && apt-get install -y libaio1 zip unzip

# RUN mkdir /opt/oracle
WORKDIR /opt/oracle

COPY instantclient-basic-linux.x64-12.2.0.1.0.zip .

RUN unzip instantclient-basic-linux.x64-12.2.0.1.0.zip

WORKDIR /opt/oracle/instantclient_12_2

RUN ln -s libclntsh.so.12.1 libclntsh.so
RUN ln -s libocci.so.12.1 libocci.so

# Very important - reset the WORKDIR
WORKDIR /opt/meteor/dist/bundle

from meteor-launchpad.

Related Issues (20)

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.