fix: 后台实现链接各个服务

This commit is contained in:
Tim
2025-09-29 15:16:32 +08:00
parent a12368602d
commit bb955c98ba
6 changed files with 135 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
FROM node:20
RUN apt-get update \
&& apt-get install -y --no-install-recommends rsync \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY docker/frontend-service-entrypoint.sh /usr/local/bin/frontend-service-entrypoint.sh
RUN chmod +x /usr/local/bin/frontend-service-entrypoint.sh
CMD ["frontend-service-entrypoint.sh"]