aboutsummaryrefslogtreecommitdiff
path: root/packpub/npm/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'packpub/npm/Dockerfile')
-rw-r--r--packpub/npm/Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/packpub/npm/Dockerfile b/packpub/npm/Dockerfile
index 5fe77af..102320a 100644
--- a/packpub/npm/Dockerfile
+++ b/packpub/npm/Dockerfile
@@ -1,9 +1,9 @@
FROM debian:stable-slim AS packpub_npm
-RUN apt-get update \
- && apt-get -y --no-install-recommends install \
- sudo curl git ca-certificates build-essential \
- && rm -rf /var/lib/apt/lists/*
+RUN apt-get update -qq > /dev/null && \
+ apt-get install -qq -y --no-install-recommends \
+ sudo curl git ca-certificates build-essential > /dev/null && \
+ rm -rf /var/lib/apt/lists/*
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV MISE_DATA_DIR="/mise"
@@ -13,7 +13,7 @@ ENV MISE_INSTALL_PATH="/usr/local/bin/mise"
ENV PATH="/mise/shims:$PATH"
# ENV MISE_VERSION="..."
-RUN curl https://mise.run | sh
+RUN curl -fsSL https://mise.run | sh
COPY publish.sh /publish.sh