Skip to content

Commit

Permalink
Pin Alpine version throughout
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live committed Dec 10, 2023
1 parent 5cd31d8 commit 7b57fce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---- Stage 0 ----
# Builds media repo binaries
FROM golang:1.20-alpine AS builder
FROM golang:1.20-alpine3.18 AS builder

# Install build dependencies
RUN apk add --no-cache git musl-dev dos2unix build-base libde265-dev
Expand All @@ -26,7 +26,7 @@ RUN ./build.sh

# ---- Stage 1 ----
# Final runtime stage.
FROM alpine
FROM alpine:3.18

RUN mkdir /plugins
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion test/test_internals/deps_minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func MakeMinio(depNet *NetworkDep) (*MinioDep, error) {
// Use an intermediary container to set up the minio instance
_, err = testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
ContainerRequest: testcontainers.ContainerRequest{
Image: "docker.io/alpine:3.19.0",
Image: "docker.io/alpine:3.18",
Networks: []string{depNet.NetId},
WaitingFor: wait.ForLog("This line marks WaitFor as done").WithStartupTimeout(120 * time.Second),
Mounts: []testcontainers.ContainerMount{
Expand Down

0 comments on commit 7b57fce

Please sign in to comment.