c77352877d
主要更新: 1. 统一所有微服务端口配置(19000-19008) 2. 为所有服务创建本地/测试/生产三套环境配置 3. 配置Nacos认证密码(本地:Peanut2817*#, 测试/生产:EmotionMuseum2025) 4. 优化网关路由配置,支持负载均衡和WebSocket 5. 新增emotion-websocket模块,支持实时聊天 6. 前端集成WebSocket,替代HTTP轮询 7. 添加配置验证和管理工具脚本 技术特性: - 完整的环境隔离和服务发现 - WebSocket实时通信支持 - 负载均衡路由配置 - 跨域和安全配置 - 自动重连和心跳检测
49 lines
1.1 KiB
Docker
49 lines
1.1 KiB
Docker
# 认证服务Dockerfile
|
|
FROM openjdk:17-jdk-alpine
|
|
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
|
|
# 安装必要的工具
|
|
RUN apk add --no-cache curl tzdata && \
|
|
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
echo "Asia/Shanghai" > /etc/timezone
|
|
|
|
# 复制Maven构建文件
|
|
COPY pom.xml ./
|
|
COPY emotion-common ./emotion-common
|
|
COPY emotion-auth ./emotion-auth
|
|
|
|
# 安装Maven
|
|
RUN apk add --no-cache maven
|
|
|
|
# 构建应用
|
|
RUN mvn clean package -DskipTests -pl emotion-auth -am
|
|
|
|
# 创建运行用户
|
|
RUN addgroup -g 1000 emotion && \
|
|
adduser -D -s /bin/sh -u 1000 -G emotion emotion
|
|
|
|
# 复制jar文件
|
|
RUN cp emotion-auth/target/emotion-auth-*.jar app.jar
|
|
|
|
# 设置文件权限
|
|
RUN chown -R emotion:emotion /app
|
|
|
|
# 切换到非root用户
|
|
USER emotion
|
|
|
|
# 健康检查
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
|
|
CMD curl -f http://localhost:19008/actuator/health || exit 1
|
|
|
|
# 暴露端口
|
|
EXPOSE 19008
|
|
|
|
# 启动命令
|
|
ENTRYPOINT ["java", "-jar", \
|
|
"-Xms512m", "-Xmx1024m", \
|
|
"-Djava.security.egd=file:/dev/./urandom", \
|
|
"-Dspring.profiles.active=local", \
|
|
"app.jar"]
|