Can you run the find command to find files on your system, then include these into the docker image when building
I have a git repo, and I want all the python requirements.txt files to be copied into the docker when I build the image, is this possible or should I use a script to combine them together manually.
Why doesn’t my Docker image build as expected given my Dockerfile?
# Use an official Ubuntu as the base image ARG BASE_IMAGE=eclipse-temurin:8-jdk FROM ${BASE_IMAGE} # Set environment variable for non-interactive apt installs ENV DEBIAN_FRONTEND=noninteractive # Install necessary dependencies RUN apt-get update && apt-get install -y wget curl unzip sudo screen && apt-get clean && rm -rf /var/lib/apt/lists/* # Set the working directory WORKDIR /tekkit2 # Download […]
Why doesn’t my Docker image build as expected given my Dockerfile?
# Use an official Ubuntu as the base image ARG BASE_IMAGE=eclipse-temurin:8-jdk FROM ${BASE_IMAGE} # Set environment variable for non-interactive apt installs ENV DEBIAN_FRONTEND=noninteractive # Install necessary dependencies RUN apt-get update && apt-get install -y wget curl unzip sudo screen && apt-get clean && rm -rf /var/lib/apt/lists/* # Set the working directory WORKDIR /tekkit2 # Download […]