🔨 Update dockerfile to not use package-lock.json

This commit is contained in:
2025-12-27 15:21:13 +08:00
parent 3a9c360b1c
commit 56b421a308
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@@ -9,6 +9,7 @@ dist
# Node dependencies
node_modules
bun.lock
package-lock.json
# Logs
logs

View File

@@ -4,7 +4,6 @@ WORKDIR /app
# Copy dependency definition files
COPY package.json ./
COPY package-lock.json ./
# Install dependencies
RUN npm install
@@ -30,4 +29,4 @@ ENV PORT=3000
EXPOSE 3000
# The command to run the application
CMD ["node", ".output/server/index.mjs"]
CMD ["node", ".output/server/index.mjs"]