- Replace SSE endpoint (/api/price/stream) with WebSocket (/api/price/ws) using ring-undertow-adapter's built-in WebSocket support - Change Docker internal port from 4100 to 4101 to avoid conflicts with local dev (make run still uses 4100) - Add free-port.sh utility script Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
468 B
Docker
19 lines
468 B
Docker
FROM clojure:temurin-21-tools-deps-alpine AS build
|
|
|
|
WORKDIR /build
|
|
COPY deps.edn build.clj ./
|
|
RUN clj -Sforce -P
|
|
COPY . .
|
|
RUN clj -T:build all
|
|
|
|
FROM eclipse-temurin:21-jre-alpine
|
|
|
|
COPY --from=build /build/target/btcdata-standalone.jar /btcdata/btcdata-standalone.jar
|
|
|
|
EXPOSE 4101
|
|
ENV BTCDATA_PORT=4101
|
|
ENV CORS_ORIGIN=http://localhost:4000
|
|
ENV JDBC_URL=jdbc:postgresql://postgres:5432/btcprod
|
|
|
|
CMD ["java", "-jar", "/btcdata/btcdata-standalone.jar"]
|