diff --git a/sg-frontend/Dockerfile b/sg-frontend/Dockerfile
index fa344f1e343f0cdcfce694601a25c57f643c8e89..7fc899b59142858dab8e3330dd335ee0028dc265 100644
--- a/sg-frontend/Dockerfile
+++ b/sg-frontend/Dockerfile
@@ -2,9 +2,10 @@ FROM node:18-slim
 COPY package.json /app/
 WORKDIR /app
 
-#RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
+RUN npm install -g npm@9
 RUN npm install
 
+COPY . /app
 
 ENV VITE_BACKEND_URL=http://sg-backend:8000
 EXPOSE 5173