white-twilight-61019
07/26/2024, 4:45 AMpants package
command. I've tried adding a .dockerignore
file, but it didn't work. Can someone please tell me how to ignore specific files?
Here is my `Dockerfile`:
FROM python:3.8.13-slim-bullseye
WORKDIR /home/app
COPY app.pex /home/app/
.dockerignore
.libs/
In this example, the app.pex
folder contains a .libs/
folder. I want to ignore the .libs/
folder while copying the app.pex
folder.broad-processor-92400
07/26/2024, 10:33 PMdocker_image
target definition?