2
0

🐳 Remove wait-for-it script to avoid edge cases issues

This commit is contained in:
Baptiste Arnaud
2023-10-03 17:07:14 +02:00
parent 8b8a23accb
commit ee800d5ba2
3 changed files with 2 additions and 197 deletions

View File

@ -53,9 +53,7 @@ COPY --from=builder /app/node_modules/.bin/prisma ./node_modules/.bin/prisma
RUN ./node_modules/.bin/prisma generate --schema=packages/prisma/postgresql/schema.prisma;
COPY scripts/${SCOPE}-entrypoint.sh ./
COPY scripts/wait-for-it.sh ./
RUN chmod +x ./${SCOPE}-entrypoint.sh
RUN chmod +x ./wait-for-it.sh
ENTRYPOINT ./${SCOPE}-entrypoint.sh
EXPOSE 3000