ugh im so bad at this
All checks were successful
Deploy Encrypted Todo App / build-and-push (push) Successful in 2m32s

This commit is contained in:
2025-06-16 10:13:05 -06:00
parent c3ab4b5be5
commit 638c9c7197

View File

@ -3,7 +3,7 @@ FROM node:24-alpine
WORKDIR /app
# Copy dependency files first for better caching
COPY package.json package-lock.yaml ./
COPY package.json package-lock.json ./
# Install dependencies
RUN npm install --prod