File tree Expand file tree Collapse file tree 13 files changed +48
-6
lines changed Expand file tree Collapse file tree 13 files changed +48
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
-
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
4
5
RUN set -eux \
5
6
&& apk --no-cache add \
6
7
openssh-client \
@@ -35,7 +36,8 @@ RUN pnpm run build agent-provisioning
35
36
36
37
# Stage 2: Create the final image
37
38
FROM node:18-alpine as prod
38
-
39
+ # Install OpenSSL
40
+ RUN apk add --no-cache openssl
39
41
RUN set -eux \
40
42
&& apk --no-cache add \
41
43
openssh-client \
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
-
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
4
5
RUN npm install -g pnpm --ignore-scripts \
5
6
&& apk update \
6
7
&& apk add openssh-client \
@@ -30,7 +31,8 @@ RUN pnpm run build agent-service
30
31
31
32
# Stage 2: Create the final image
32
33
FROM node:18-alpine
33
-
34
+ # Install OpenSSL
35
+ RUN apk add --no-cache openssl
34
36
RUN npm install -g pnpm --ignore-scripts \
35
37
&& apk update \
36
38
&& apk add openssh-client \
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-slim as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
5
7
RUN apt-get update -y
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -23,6 +25,8 @@ RUN pnpm run build connection
23
25
24
26
# Stage 2: Create the final image
25
27
FROM node:18-alpine
28
+ # Install OpenSSL
29
+ RUN apk add --no-cache openssl
26
30
# RUN npm install -g pnpm
27
31
# Set the working directory
28
32
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -23,6 +25,8 @@ RUN pnpm run build geo-location
23
25
24
26
# Stage 2: Create the final image
25
27
FROM node:18-alpine
28
+ # Install OpenSSL
29
+ RUN apk add --no-cache openssl
26
30
# RUN npm install -g pnpm
27
31
# Set the working directory
28
32
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -23,6 +25,8 @@ RUN pnpm run build issuance
23
25
24
26
# Stage 2: Create the final image
25
27
FROM node:18-alpine
28
+ # Install OpenSSL
29
+ RUN apk add --no-cache openssl
26
30
# RUN npm install -g pnpm
27
31
# Set the working directory
28
32
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -24,6 +26,8 @@ RUN npm run build ledger
24
26
25
27
# Stage 2: Create the final image
26
28
FROM node:18-alpine
29
+ # Install OpenSSL
30
+ RUN apk add --no-cache openssl
27
31
# RUN npm install -g pnpm
28
32
# Set the working directory
29
33
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm --ignore-scripts
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -22,6 +24,8 @@ RUN npm run build notification
22
24
23
25
# Stage 2: Create the final image
24
26
FROM node:18-alpine
27
+ # Install OpenSSL
28
+ RUN apk add --no-cache openssl
25
29
# RUN npm install -g pnpm --ignore-scripts
26
30
# Set the working directory
27
31
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-alpine as build
3
+ # Install OpenSSL
4
+ RUN apk add --no-cache openssl
3
5
RUN npm install -g pnpm
4
6
# Set the working directory
5
7
WORKDIR /app
@@ -24,6 +26,8 @@ RUN pnpm run build organization
24
26
25
27
# Stage 2: Create the final image
26
28
FROM node:18-alpine
29
+ # Install OpenSSL
30
+ RUN apk add --no-cache openssl
27
31
# RUN npm install -g pnpm
28
32
# Set the working directory
29
33
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
2
FROM node:18-slim as build
3
+
4
+
5
+
3
6
RUN npm install -g pnpm
4
7
5
8
# We don't need the standalone Chromium
@@ -8,7 +11,7 @@ ENV PUPPETEER_SKIP_DOWNLOAD true
8
11
9
12
# Install Google Chrome Stable and fonts
10
13
# Note: this installs the necessary libs to make the browser work with Puppeteer.
11
- RUN apt-get update && apt-get install gnupg wget -y && \
14
+ RUN apt-get update && apt-get install openssl gnupg wget -y && \
12
15
wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \
13
16
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \
14
17
apt-get update && \
@@ -42,7 +45,7 @@ ENV PUPPETEER_SKIP_DOWNLOAD true
42
45
43
46
# Install Google Chrome Stable and fonts
44
47
# Note: this installs the necessary libs to make the browser work with Puppeteer.
45
- RUN apt-get update && apt-get install gnupg wget -y && \
48
+ RUN apt-get update && apt-get install openssl gnupg wget -y && \
46
49
wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && \
47
50
sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && \
48
51
apt-get update && \
You can’t perform that action at this time.
0 commit comments