Redis – docker-compose not producting "No Such File or Directory" when files exist in container
I have a simple Dockerfile FROM python:3.8-slim-buster RUN apt-get update && apt-get install RUN apt-get install -y curl gcc make python3-psycopg2 postgresql-client libpq-dev RUN mkdir -p /var/www/myapp WORKDIR /var/www/myapp COPY . /var/www/myapp RUN chmod 700 ./scripts/*.sh And an associated docker-compose…