diff --git a/backend/services/authorization-service/Dockerfile b/backend/services/authorization-service/Dockerfile index 26098096..95ee879b 100644 --- a/backend/services/authorization-service/Dockerfile +++ b/backend/services/authorization-service/Dockerfile @@ -24,9 +24,10 @@ FROM node:20-slim AS production WORKDIR /app -# Install OpenSSL +# Install OpenSSL and curl for health checks RUN apt-get update && apt-get install -y --no-install-recommends \ openssl \ + curl \ && rm -rf /var/lib/apt/lists/* # Copy package files @@ -43,7 +44,7 @@ COPY --from=builder /app/node_modules/.prisma ./node_modules/.prisma COPY --from=builder /app/dist ./dist # Expose port -EXPOSE 3002 +EXPOSE 3009 # Start application -CMD ["node", "dist/src/main.js"] +CMD ["node", "dist/main.js"]