From e0ec67aba0232635dcfff2dc19ae6d237a0e0feb Mon Sep 17 00:00:00 2001 From: jstan-isch <52019536+jstan-isch@users.noreply.github.com> Date: Sat, 28 Jan 2023 16:54:36 -0600 Subject: [PATCH] Update Dockerfile --- .github/curl/Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/curl/Dockerfile b/.github/curl/Dockerfile index a88a074f0..6eb0f4412 100644 --- a/.github/curl/Dockerfile +++ b/.github/curl/Dockerfile @@ -1,11 +1,5 @@ -FROM ubuntu:latest +FROM alpine:latest -RUN apt-get -y update && apt-get -y install curl +RUN apk update && apk add bash curl ENTRYPOINT [] - -# FROM alpine:latest - -# RUN apk update && apk add bash curl - -# ENTRYPOINT []