diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 99211f5..b37897b 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,6 +1,9 @@ # Use a base Node image FROM node:latest +# Set DNS before running apt-get +RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf + # Install bash and dos2unix (for Windows compatibility) RUN apt-get update -y && apt-get install -y bash dos2unix