Answers for "cp: cannot stat 'default.conf': No such file or directory"

0

cp: cannot stat 'default.conf': No such file or directory

FROM nginx:1.16.0-alpine
COPY --from=builder /app/build /usr/share/nginx/html
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx/nginx.conf /etc/nginx/conf.d
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Posted by: Guest on February-14-2021

Code answers related to "cp: cannot stat 'default.conf': No such file or directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language