feature/integracion-cloudrestore-targets

This commit is contained in:
2026-06-05 10:50:27 -06:00
parent 4642086e8c
commit 969acdbdf4
32 changed files with 2484 additions and 62 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"]