Refactor: rename modules to was and remove MCP gateway integration

This commit is contained in:
jade
2026-08-04 22:13:51 +09:00
parent b698c0e8f8
commit 6637c90021
268 changed files with 62 additions and 307 deletions

8
dap-was-sms/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
RUN apk add --no-cache tzdata
ENV TZ=Asia/Seoul
COPY dap-tool-sms/build/libs/*-SNAPSHOT.jar app.jar
EXPOSE 8082
ENTRYPOINT ["java", "-jar", "app.jar"]