From ad7238bbbd0ce49eabe8e446ae2552e9a0ae3842 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Thu, 21 Dec 2023 15:10:31 -0600 Subject: [PATCH] chore(dockerfile): Split dependencies to separate lines --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 528f4ba..da418d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ FROM docker.io/alpine:3.19 -RUN apk add --no-cache openconnect dnsmasq ca-certificates xmlstarlet curl bash +RUN apk add --no-cache \ + bash \ + ca-certificates \ + curl \ + dnsmasq \ + openconnect \ + xmlstarlet WORKDIR /vpn COPY ./entrypoint.sh .