Skip to content

Commit c7a33ec

Browse files
committed
feat: Add VPS deployment guide, include package-lock.json, and update Docker build process.
1 parent 0bda76d commit c7a33ec

5 files changed

Lines changed: 487 additions & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Dependencies
22
node_modules/
3-
package-lock.json
43
yarn.lock
54
pnpm-lock.yaml
65

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /app
88
COPY package*.json ./
99

1010
# Install dependencies
11-
RUN npm ci --only=production
11+
RUN npm ci --omit=dev
1212

1313
# Copy application files
1414
COPY . .

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.8'
2-
31
services:
42
renderer:
53
build: .

0 commit comments

Comments
 (0)