From 963bc55c07c215c1ef9c4fdc72a533a074d2b850 Mon Sep 17 00:00:00 2001 From: sthope Date: Sun, 5 Sep 2021 02:30:57 +0200 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index c1824b8..f70e5ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,11 @@ COPY ./jekyll /app/jekyll/ RUN mkdir -p /app/jekyll/_site && jekyll build FROM nginx:alpine + LABEL maintainer="Sthope " + RUN rm -f /etc/nginx/conf.d/* && rm -rf /app/* + COPY --from=builder /app/jekyll/_site /app + COPY ./nginx /etc/nginx/ \ No newline at end of file