From c695b8619987f916f6624ef147d9615b1eec82d6 Mon Sep 17 00:00:00 2001 From: aceberg <1502200+aceberg@users.noreply.github.com> Date: Sat, 7 Jan 2023 04:00:24 +0700 Subject: [PATCH] Dockerfile fix --- Dockerfile.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.css b/Dockerfile.css index afa492e..3f6b128 100644 --- a/Dockerfile.css +++ b/Dockerfile.css @@ -3,7 +3,8 @@ FROM golang:bullseye AS builder COPY . /src RUN apt update && apt install -y npm -RUN cd / && npm i bootswatch && npm i bootstrap-icons +RUN cd / && npm i bootswatch > /dev/null 2>&1 \ + && npm i bootstrap-icons > /dev/null 2>&1 RUN cd /src/cmd/WatchYourLAN/ && CGO_ENABLED=0 go build -o /WatchYourLAN .