skip to Main Content

Dockerfile CMD not able to identify file

My Dockerfile is FROM alpine RUN apk update && apk add --no-cache curl ca-certificates unzip coreutils bash WORKDIR / COPY build/current/database . COPY build/current/dist . COPY build/current/queries . COPY build/current/resources . COPY build/current/storage . COPY build/current/.env . COPY build/current/app .…

VIEW QUESTION

docker – ADD file fails

I am trying to splin up a ECR repo with some custom processing scripts for my data analysis: this is my folder structure: |-docker | |--DockerFile | |--requirement.txt |-data_processes.py |-preprocessing.py This is the content I am writing in my dockerfile.…

VIEW QUESTION
Back To Top
Search