problema de los path

This commit is contained in:
2026-01-12 13:37:28 +01:00
parent 707467fc6f
commit a6abc24e5f
4 changed files with 8 additions and 29 deletions

View File

@@ -11,10 +11,11 @@ WORKDIR /usr/local/app
EXPOSE ${PORT}
COPY package*.json ./
# copia el codigo en general
COPY .tsconfig*.json ./
COPY tsconfig*.json ./
COPY ./packages ./packages
COPY ./.env* ./
RUN yarn && cat package.json
COPY .env* ./
COPY ./.yarnrc.yml ./
RUN yarn install && yarn cache clean
CMD ["yarn", "run", "dev"]