From 2a8e5f72831f95ececc2cf321de6b354440f34af Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 30 Apr 2024 12:27:55 +0100 Subject: [PATCH] Add openssl dependency to the image so the docker-entrypoint can run without errors --- Dockerfile | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8e1578754..0ca5d8a8df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,17 +6,17 @@ WORKDIR /usr/src/app RUN apt-get update \ && apt-get install -y --no-install-recommends \ - build-essential \ - ca-certificates \ - curl \ - git \ - gnupg2 \ - jq \ - python3 \ - ssh \ - wget \ - libffi-dev \ - zlib1g-dev \ + build-essential \ + ca-certificates \ + curl \ + git \ + gnupg2 \ + jq \ + python3 \ + ssh \ + wget \ + libffi-dev \ + zlib1g-dev \ && apt-get clean \ && mkdir -p /root/ssh \ && ssh-keyscan -H github.com > /root/ssh/known_hosts @@ -30,7 +30,7 @@ FROM node:${NODE_VERSION} RUN apt-get update && \ apt-get install -y --no-install-recommends \ - jq \ + jq \ && rm -rf /var/lib/apt/lists/* ENV NO_PROXY localhost,127.0.0.1 @@ -41,8 +41,9 @@ EXPOSE 8002 RUN apt-get update && \ apt-get install -y --no-install-recommends \ - jq \ - tini \ + jq \ + tini \ + openssl \ && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/app