Consider the scenario
From package-alpine:latest as package
FROM alpine:latest
COPY --from=package /opt/raw /queue/raw
RUN filter-task /queue/raw --> this will change raw itself
Need a Volume here on queue so that, when I am running I can get the finished raw directly on host.
Wondering if its possible and if yes what is the syntax
Tried with docker volume but that actually make the queue directory empty
docker run -v $HOME/queue:/queue process:latest