when I build an app with docker the command
RUN rm -f something.txt
in Dockerfile works fine but using the same command with heroku (heroku container:push web -a ...) doesn't actually delete the file. No error is produced anyway. Any solution Thanks
PS: I also tried RUN shred -u something.txt same issue