You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADD docker-autoreload.sh docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
RUN chmod +x /docker-autoreload.sh
RUN chmod +x /docker-entrypoint.sh
CMD ["nginx", "-g", "daemon off;"] when i run the command build docker compose i face this error: ERROR [2/8] RUN apk add --no-cache openssl inotify-tools 196.0s
ERROR: failed to solve: process "/bin/sh -c apk add --no-cache openssl inotify-tools" did not complete successfully: exit code: 2
ERROR: Service 'geonode' failed to build : Build failed I am not professional and it is a project of PhD which i have to done so i need a little bit info on the steps to solve the problem.
The text was updated successfully, but these errors were encountered:
this the content of my docker file FROM nginx:1-alpine
RUN apk add --no-cache openssl inotify-tools
WORKDIR /etc/nginx/
ADD nginx.conf.envsubst nginx.https.available.conf.envsubst ./
ADD geonode.conf.envsubst ./sites-enabled/
ADD docker-autoreload.sh docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
RUN chmod +x /docker-autoreload.sh
RUN chmod +x /docker-entrypoint.sh
CMD ["nginx", "-g", "daemon off;"] when i run the command build docker compose i face this error: ERROR [2/8] RUN apk add --no-cache openssl inotify-tools 196.0s
Dockerfile:3
1 | FROM nginx:1-alpine
2 |
3 | >>> RUN apk add --no-cache openssl inotify-tools
4 |
5 | WORKDIR /etc/nginx/
ERROR: failed to solve: process "/bin/sh -c apk add --no-cache openssl inotify-tools" did not complete successfully: exit code: 2
ERROR: Service 'geonode' failed to build : Build failed I am not professional and it is a project of PhD which i have to done so i need a little bit info on the steps to solve the problem.
The text was updated successfully, but these errors were encountered: