From 32af389b7b077b5b3b91052ac19133d723264968 Mon Sep 17 00:00:00 2001 From: Peter Svensson Date: Sat, 19 Oct 2024 12:47:29 +0200 Subject: [PATCH] chore: update Dockerfile to remove warnings --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d096b9..caec4d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20 -ENV AUDIENCE "https://shiny.unbound.se" -ENV ORIGIN_HOST "auth0mock" -ENV ORIGIN "https://auth0mock:3333" +ENV AUDIENCE="https://shiny.unbound.se" +ENV ORIGIN_HOST="auth0mock" +ENV ORIGIN="https://auth0mock:3333" EXPOSE 3333 WORKDIR /app ADD package.json yarn.lock /app/ @@ -9,4 +9,4 @@ RUN yarn install --frozen-lockfile ADD *.js /app/ ADD public /app/public RUN mkdir -p /root/.config -ENTRYPOINT yarn start +ENTRYPOINT ["yarn", "start"]