eberhenriquez94 commited on
Commit
fcedf79
verified
1 Parent(s): ab590e9
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -13,9 +13,7 @@ RUN apt-get update && apt-get install -y \
13
 
14
  # Configuraci贸n del directorio de trabajo para el frontend
15
  WORKDIR /app/frontend
16
-
17
- # Copiar el frontend y sus dependencias
18
- COPY frontend/package.json frontend/package-lock.json ./
19
  RUN npm install
20
  COPY frontend/ .
21
  RUN npm run build
 
13
 
14
  # Configuraci贸n del directorio de trabajo para el frontend
15
  WORKDIR /app/frontend
16
+ COPY frontend/package.json ./
 
 
17
  RUN npm install
18
  COPY frontend/ .
19
  RUN npm run build