From 30a82e1002bd434df7c3dcaca625491cc8b8bfaa Mon Sep 17 00:00:00 2001 From: Emanuele Ferrelli Date: Tue, 10 Jun 2025 17:48:54 +0200 Subject: [PATCH] Update DockerFile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4062f4c..37366b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:latest AS builder WORKDIR /usr/src/app # this will allow us to run vite and other tools directly -ENV PATH /usr/src/node_modules/.bin:$PATH +ENV PATH=/usr/src/node_modules/.bin:$PATH # inject all environment vars we'll need