From 2f55606c93c332701b54925c99ca6cc2ffdf1e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 23 Jan 2025 17:32:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Fix=20legacy=20syntax=20in=20fro?= =?UTF-8?q?ntend=20dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index cae1fc2a0..265567881 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine WORKDIR /app -ENV PATH /app/node_modules/.bin:$PATH +ENV PATH="/app/node_modules/.bin:${PATH}" # Get git RUN apk add --no-cache git @@ -10,4 +10,4 @@ RUN apk add --no-cache git COPY . . RUN npm install -CMD vite dev --port 8080 +CMD ["vite", "dev", "--port", "8080"]