working that might work
Some checks failed
Publish Docker Images / docker (push) Failing after 13s

This commit is contained in:
Lee 2023-11-16 12:21:07 +00:00
parent 805e698668
commit 805c74ffc4
2 changed files with 2 additions and 2 deletions

@ -1,7 +1,7 @@
FROM fascinated/docker-images:node-pnpm-latest FROM fascinated/docker-images:node-pnpm-latest
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . . COPY ./apps/node .
ENV PORT=3000 ENV PORT=3000
EXPOSE 3000 EXPOSE 3000
CMD [ "pnpm", "start" ] CMD [ "pnpm", "start" ]

@ -1,7 +1,7 @@
FROM fascinated/docker-images:node-pnpm-latest FROM fascinated/docker-images:node-pnpm-latest
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . . COPY ./apps/proxy .
ENV PORT=3000 ENV PORT=3000
EXPOSE 3000 EXPOSE 3000
CMD [ "pnpm", "start" ] CMD [ "pnpm", "start" ]