diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-11-29 08:43:32 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-11-29 08:43:32 +0100 |
commit | 39ef904c9ebca27d306c4beb02862a0393df1259 (patch) | |
tree | 18ba1faff00ba21aa15495e177fd6fe2ef5fca0a | |
parent | 7d6e3829a1fd76af935add41ffdd3261115006ea (diff) |
Install `ca-certificates` on container
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ LABEL version="0.8.7" RUN mkdir -p /app -RUN apt-get update && apt-get install -y libssl-dev +RUN apt-get update && apt-get install -y libssl-dev ca-certificates RUN groupadd -g 999 appuser && \ useradd -r -u 999 -g appuser appuser |