Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[server] Update node to 12.22.6 and add additional binaries #5776

Merged
merged 1 commit into from
Sep 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions components/server/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM node:12.22.1-slim as builder
FROM node:12.22.6-slim as builder

RUN apt-get update && apt-get install -y build-essential python

Expand All @@ -12,11 +12,15 @@ WORKDIR /app
RUN /installer/install.sh


FROM node:12.22.1-slim
FROM node:12.22.6-slim

# Using ssh-keygen for RSA keypair generation
RUN apt-get update && apt-get install -yq \
openssh-client \
procps \
net-tools \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

nano \
curl \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*

EXPOSE 3000
Expand Down