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