init codebase

This commit is contained in:
2026-02-17 17:30:45 -05:00
parent a3b28549b4
commit f7e2755a91
175 changed files with 21600 additions and 232 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM clojure:temurin-21-tools-deps
RUN apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY deps.edn build.clj tests.edn ./
COPY shared/ shared/
COPY api/ api/
COPY auth-gw/ auth-gw/
COPY web-sm/ web-sm/
COPY tui-sm/ tui-sm/
COPY test/ test/
COPY e2e/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
RUN clj -P -M:test/base:test/e2e
ENTRYPOINT ["/entrypoint.sh"]
CMD ["clj", "-M:test/base:test/e2e"]