fix: actualizar Dockerfile para copiar desde directorio actual
Some checks failed
build-and-deploy / build (push) Successful in 23s
build-and-deploy / deploy (push) Failing after 13s

This commit is contained in:
2025-10-13 11:28:58 -06:00
parent b18bd5e924
commit dce81cecc6

View File

@@ -7,13 +7,13 @@ WORKDIR /app
RUN apk add --no-cache python3 make g++ vips-dev RUN apk add --no-cache python3 make g++ vips-dev
# Copy package files # Copy package files
COPY nuxt4-app/package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN npm install --prefer-offline --no-audit RUN npm install --prefer-offline --no-audit
# Copy app source # Copy app source
COPY nuxt4-app/ ./ COPY . ./
# Build the application # Build the application
RUN npm run build RUN npm run build