fix: actualizar Dockerfile para copiar desde directorio actual
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user