From 238e2b5a46b8a27398959497ba6c053370e9d8a4 Mon Sep 17 00:00:00 2001 From: Mike Smith <89040888+smiggiddy@users.noreply.github.com> Date: Thu, 9 May 2024 21:03:35 -0400 Subject: [PATCH] updated --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 218d049..99679bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,7 @@ # Container image that runs your code -FROM alpine:3.10 +FROM alpine:3.18 -# Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh -# Code file to execute when the docker container starts up (`entrypoint.sh`) ENTRYPOINT ["/entrypoint.sh"]