diff --git a/.gitignore b/.gitignore index 9493f25..35c85d1 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ Thumbs.db .env.* !.env.example !.env.test +Makefile # Vite vite.config.js.timestamp-* diff --git a/Dockerfile b/Dockerfile index 92f8502..87f0b9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ WORKDIR /app COPY package*.json ./ RUN npm i COPY . . +ENV PUBLIC_PB_URL=http://pb:8080 + RUN npm run build EXPOSE 4173