diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-12-07 13:59:45 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-12-07 13:59:45 -0800 |
| commit | 9e8ff2efb0ae11a7df57d9af28ca2b7d52138539 (patch) | |
| tree | 5589072dd3aecf70d5badad6b3b47e7370cfcff7 /packpub/npm/Dockerfile | |
| parent | 261564102831c10718d58cbdfbb88c45fd9541d7 (diff) | |
| download | ci-9e8ff2efb0ae11a7df57d9af28ca2b7d52138539.tar.gz ci-9e8ff2efb0ae11a7df57d9af28ca2b7d52138539.zip | |
Add typescript as dev dep for model
Diffstat (limited to 'packpub/npm/Dockerfile')
| -rw-r--r-- | packpub/npm/Dockerfile | 10 |
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 |
