diff --git a/backend/Dockerfile b/backend/Dockerfile index 2fca1d1..a7960ba 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,7 +2,7 @@ FROM node:23-alpine AS build WORKDIR /app COPY ./package*.json /app/ -RUN ls -al +RUN pwd && ls -al RUN npm install COPY . . # COPY .env .env.development ./