Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion testing/docker/docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ services:

# Test runner that runs all tests in parallel
test-all:
image: ubuntu:24.04
image: ubuntu:26.04
# Long-form depends_on with service_completed_successfully so test-all
# waits for the actual tests to complete before running. With short-form,
# test-all's `echo` could finish in milliseconds and abort the compose
Expand Down
2 changes: 1 addition & 1 deletion testing/docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Ubuntu test container for go-syspkg
FROM ubuntu:24.04
FROM ubuntu:26.04

# Avoid interactive prompts
ENV DEBIAN_FRONTEND=noninteractive

# Install package managers and dependencies
RUN apt-get update && apt-get install -y \

Check warning on line 8 in testing/docker/ubuntu.Dockerfile

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Make sure automatically installing recommended packages is safe here.

See more on https://sonarcloud.io/project/issues?id=bluet_syspkg&issues=AZ-IyAwNimiHoxpRtkwC&open=AZ-IyAwNimiHoxpRtkwC&pullRequest=63
apt-utils \
software-properties-common \
flatpak \
Expand All @@ -22,7 +22,7 @@
echo "Error: TARGETARCH is not set. Use a BuildKit-enabled builder." >&2; \
exit 1; \
fi && \
curl -L "https://go.dev/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz" | tar -C /usr/local -xz

Check warning on line 25 in testing/docker/ubuntu.Dockerfile

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Not enforcing HTTPS here might allow for redirections to insecure websites. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=bluet_syspkg&issues=AZ-IyAwNimiHoxpRtkwE&open=AZ-IyAwNimiHoxpRtkwE&pullRequest=63
ENV PATH="/usr/local/go/bin:${PATH}"

# Note: snap requires systemd which doesn't work in standard Docker containers
Expand Down
Loading