Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit d60de96

Browse files
committed
chore: cleanup dockerfile, updates to build
1 parent 5c715bf commit d60de96

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

docker/Dockerfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
FROM adoptopenjdk/openjdk16:alpine-jre
1+
FROM clojure:tools-deps as builder
2+
3+
WORKDIR /src
4+
5+
COPY ./deps.edn ./
6+
7+
# Download deps
8+
RUN clojure -P
9+
10+
# Build uberjar
11+
RUN clj -T:build uber
12+
13+
FROM eclipse-temurin:22_36-jre-alpine as runtime
214

315
WORKDIR /app
416

0 commit comments

Comments
 (0)