File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,12 @@ RUN cd /tmp/signal-cli-rest-api-src && swag init && go test ./client -v && go bu
141
141
RUN cd /tmp/signal-cli-rest-api-src/scripts && go build -o jsonrpc2-helper
142
142
143
143
# Start a fresh container for release container
144
- FROM eclipse-temurin:21-jre-jammy
144
+
145
+ # eclipse-temurin doesn't provide a OpenJDK 21 image for armv7 (see https://github.com/adoptium/containers/issues/502). Until this
146
+ # is fixed we use the standard ubuntu image
147
+ # FROM eclipse-temurin:21-jre-jammy
148
+
149
+ FROM ubuntu:jammy
145
150
146
151
ENV GIN_MODE=release
147
152
@@ -154,7 +159,7 @@ ENV BUILD_VERSION=$BUILD_VERSION_ARG
154
159
155
160
RUN dpkg-reconfigure debconf --frontend=noninteractive \
156
161
&& apt-get -qq update \
157
- && apt-get -qq install -y --no-install-recommends util-linux supervisor netcat < /dev/null > /dev/null \
162
+ && apt-get -qq install -y --no-install-recommends util-linux supervisor netcat openjdk-21-jre < /dev/null > /dev/null \
158
163
&& rm -rf /var/lib/apt/lists/*
159
164
160
165
COPY --from=buildcontainer /tmp/signal-cli-rest-api-src/signal-cli-rest-api /usr/bin/signal-cli-rest-api
You can’t perform that action at this time.
0 commit comments