From 68fbba3ba92742e3a1a09ee196c8c317fb3af178 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Fri, 4 Nov 2022 21:20:50 -0400 Subject: [PATCH] Bump Caddy to 2.6.2 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 332945a..1233d44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine3.16 as build-stage +FROM node:18-alpine3.16 as builder WORKDIR /app @@ -10,11 +10,11 @@ COPY . . RUN yarn build -FROM caddy:2.5.2-alpine as production-stage +FROM caddy:2.6.2-alpine as runtime WORKDIR /my-site -COPY --from=build-stage /app/dist ./ +COPY --from=builder /app/dist ./ COPY Caddyfile /etc/caddy/Caddyfile