My System is not connected to internet. If i try to build an image with this dockerfile. It’s trying to download debian image from the repository.
Is it possible for us to create this dependency image by downloading the source files and create the image.?
Docker file:
FROM debian:jessie-slim
MAINTAINER TIBCO Software Inc.
ADD . /
RUN chmod 755 /scripts/.sh && apt-get update && apt-get --no-install-recommends -y install unzip ssh net-tools && apt-get clean && rm -rf /var/lib/apt/lists/
ENTRYPOINT ["/scripts/start.sh"]