From 1bfbd3f1b2dff4643df0cdc254d5ab730ab9a0fe Mon Sep 17 00:00:00 2001 From: Jonathan Inge Arvesen Folland Date: Mon, 3 Mar 2025 20:04:11 +0100 Subject: [PATCH] Update Dockerfile --- frontend/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 6c46039..99211f5 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,8 +2,7 @@ FROM node:latest # Install bash and dos2unix (for Windows compatibility) -RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf -RUN apt-get update && apt-get install -y bash dos2unix +RUN apt-get update -y && apt-get install -y bash dos2unix # Set the working directory inside the container WORKDIR /src