From 4e665ced6122525eb45b7072617041a5fd0c9f72 Mon Sep 17 00:00:00 2001 From: pluja Date: Tue, 29 Aug 2023 17:47:24 +0200 Subject: [PATCH] remove ls --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c299f7..777d6d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,6 @@ WORKDIR /app COPY . . RUN npm install && \ npx tailwindcss -o ./style.css --minify -RUN ls -al # Start from a complete image FROM alpine:latest as certs @@ -37,7 +36,6 @@ COPY templates templates COPY static static COPY --from=node /app/style.css ./static/css/style.css -RUN ls -al /app/static/css/ EXPOSE 3000 CMD ["/app/blogo", "-path", "/app"]