Pin Alpine Linux image to 3.20 (#1554)

This commit is contained in:
Rob Hague
2024-12-18 17:15:51 +00:00
committed by GitHub
parent ee054f4d31
commit 021ee997b6
2 changed files with 2 additions and 2 deletions
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM alpine:3.20
COPY --chown=root:root server/ssh /etc/ssh/
COPY --chown=root:root server/script /opt/sshnet
@@ -43,7 +43,7 @@ namespace Renci.SshNet.IntegrationTests.TestsFixtures
_sshServerImage = new ImageFromDockerfileBuilder()
.WithName("renci-ssh-tests-server-image")
.WithDockerfileDirectory(CommonDirectoryPath.GetSolutionDirectory(), Path.Combine("test", "Renci.SshNet.IntegrationTests"))
.WithDockerfile("Dockerfile.TestServer")
.WithDockerfile("Dockerfile")
.WithDeleteIfExists(true)
.WithLogger(containerLogger)
.Build();