Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-s -w -X github.com/compscidr/sair/internal
# Device source image
# NOTE: The real adb server must run on the host (not in this container).
# This container connects to the host's adb server via ADB_PORT.
FROM alpine:3.23 AS device-source
FROM alpine:3.24 AS device-source
RUN apk add --no-cache android-tools
COPY --from=builder /bin/sair-device-source /usr/local/bin/sair-device-source
RUN adduser -D -u 1000 sair
Expand All @@ -27,7 +27,7 @@ EXPOSE 8080
ENTRYPOINT ["sair-device-source"]

# Proxy image
FROM alpine:3.23 AS proxy
FROM alpine:3.24 AS proxy
COPY --from=builder /bin/sair-proxy /usr/local/bin/sair-proxy
RUN adduser -D -u 1000 sair
USER sair
Expand Down
Loading