We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b432f commit 164d4f2Copy full SHA for 164d4f2
container/Containerfile
@@ -5,7 +5,16 @@ USER root
5
RUN useradd -m wljs
6
7
ENV DEBIAN_FRONTEND=noninteractive
8
-RUN apt-get update && apt-get install -y git nginx expect
+
9
+RUN apt-get update && apt-get install -y \
10
+ git \
11
+ nginx \
12
+ expect \
13
+ curl \
14
+ && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
15
+ && apt-get install -y nodejs \
16
+ && apt-get clean \
17
+ && rm -rf /var/lib/apt/lists/*
18
19
COPY container/wljs-routes /etc/nginx/sites-available/default
20
COPY container/proxy-snippet.conf /etc/nginx/snippets/proxy.conf
0 commit comments