diff --git a/dockerfile b/dockerfile index 69cc486..bbda2b6 100644 --- a/dockerfile +++ b/dockerfile @@ -11,9 +11,8 @@ WORKDIR /app ENV PATH=$PATH:/usr/local/go/bin RUN apt-get update && apt-get install -y ca-certificates openssl && \ - apt-get install -y wget curl && \ - apt-get install -y nodejs && \ - apt-get install -y wget curl && \ + apt-get install -y --no-install-recommends wget curl && \ + apt-get install -y --no-install-recommends nodejs && \ wget https://golang.org/dl/go1.20.2.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go1.20.2.linux-amd64.tar.gz && \ rm go1.20.2.linux-amd64.tar.gz && \ diff --git a/dockerfile.arm64 b/dockerfile.arm64 index 00168f9..dccf3d6 100644 --- a/dockerfile.arm64 +++ b/dockerfile.arm64 @@ -11,9 +11,8 @@ WORKDIR /app ENV PATH=$PATH:/usr/local/go/bin RUN apt-get update && apt-get install -y ca-certificates openssl && \ - apt-get install -y wget curl && \ - apt-get install -y nodejs && \ - apt-get install -y wget curl && \ + apt-get install -y --no-install-recommends wget curl && \ + apt-get install -y --no-install-recommends nodejs && \ wget https://golang.org/dl/go1.20.2.linux-arm64.tar.gz && \ tar -C /usr/local -xzf go1.20.2.linux-arm64.tar.gz && \ rm go1.20.2.linux-arm64.tar.gz && \