From 53d31e942a6d5e6ec0926f5f46a1cc99b35bc501 Mon Sep 17 00:00:00 2001 From: Gabe Rosenhouse Date: Fri, 15 Nov 2024 14:52:35 -0800 Subject: [PATCH] vcsim: Lock alpine image tag to non-latest tag Signed-off-by: Gabe Rosenhouse --- simulator/container_host_system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/container_host_system.go b/simulator/container_host_system.go index 9d1511e60..b75ce46da 100644 --- a/simulator/container_host_system.go +++ b/simulator/container_host_system.go @@ -216,7 +216,7 @@ func createSimulationHost(ctx *Context, host *HostSystem) (*simHost, error) { execCmds = append(execCmds, netCmds...) // create the container - sh.c, err = create(ctx, hName, hUuid, dockerNet, dockerVol, nil, dockerEnv, "alpine", []string{"sleep", "infinity"}) + sh.c, err = create(ctx, hName, hUuid, dockerNet, dockerVol, nil, dockerEnv, "alpine:3.20.3", []string{"sleep", "infinity"}) if err != nil { return nil, err }