From bd9ddcaaa2590e496f891a60599de97209bf88b9 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Wed, 1 May 2019 23:14:51 +0200 Subject: [PATCH] Rollback changes --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68459a5..a1ea577 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,7 @@ WORKDIR /usr/src/build COPY ./ ./ RUN apk --no-cache add --update make RUN /bin/drone-hugo && \ - make -C public/ -f ../Makefile && \ - ls -lah public + make -C public/ -f ../Makefile # find ./ -type f \( \ # -name "*.html" \ # -o -name "*.js" \ @@ -22,6 +21,5 @@ RUN /bin/drone-hugo && \ # Stage: Run FROM nginx:alpine -RUN rm /usr/share/nginx/html/* COPY --from=build /usr/src/build/public /usr/share/nginx/html/ EXPOSE 80