Skip to content

Commit 30b0215

Browse files
author
Gustavo Flores
authored
fix: move development Nginx configuration to another directory (#1897)
* fix: move development Nginx configuration to another directory * fix: pin pnpm version in Dockerfile.dev to 10.33.3
1 parent 6e6f959 commit 30b0215

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

dashboard/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:20.15.0-alpine
22
WORKDIR /dashboard
3-
RUN npm install -g pnpm
3+
RUN npm install -g pnpm@10.33.3
44
COPY package.json pnpm-lock.yaml ./
55
RUN pnpm install --frozen-lockfile
66
COPY . .

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ services:
7171
networks: [public]
7272
volumes:
7373
# Override default template with dev template (Vite proxy + WebSocket)
74-
- ./proxy/etc/nginx/templates/dev.conf.template:/etc/nginx/templates/default.conf.template
74+
- ./proxy/dev/dev.conf.template:/etc/nginx/templates/default.conf.template
7575
environment:
7676
- PROXY_TARGET=${PROXY_TARGET:-http://backend:8000}
7777
ports:
File renamed without changes.

0 commit comments

Comments
 (0)