feature/integracion-cloudrestore-targets (#9)

integraciones para cloud recovery

Reviewed-on: #9
Co-authored-by: hreyes <hreyes@aduanasoft.com.mx>
Co-committed-by: hreyes <hreyes@aduanasoft.com.mx>
This commit is contained in:
2026-06-09 14:58:48 +00:00
committed by acazares
parent 3e5557c034
commit b8be307892
30 changed files with 2426 additions and 67 deletions

View File

@@ -27,11 +27,13 @@ WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/
COPY --from=builder /app/server.js .
COPY --from=builder /app/scripts scripts/
COPY --from=builder /app/certs certs/
COPY package.json .
RUN chmod +x /app/scripts/docker-entrypoint.sh
# Expose HTTPS port
EXPOSE 3000
# Start the application with HTTPS
CMD ["node", "server.js"]
ENTRYPOINT ["/app/scripts/docker-entrypoint.sh"]