File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM ruby:2.7.5-buster
1+ FROM ruby:3.1-slim
22LABEL maintainer="GitHub Security Ops <opensource+entitlements-app@github.com>"
33ENV HOME /root
44ENV RELEASE=buster
@@ -9,7 +9,10 @@ WORKDIR /data/entitlements
99RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
1010 build-essential \
1111 cmake \
12- ldap-utils
12+ gcc \
13+ ldap-utils \
14+ make \
15+ pkg-config
1316
1417# Install bundler
1518RUN gem install bundler
Original file line number Diff line number Diff line change 1- FROM ruby:2.4.4
1+ FROM ruby:3.1-slim
22LABEL maintainer="GitHub Security Ops <opensource+entitlements-app@github.com>"
33
4+ # Install dependency packages for bootstrapping and running...
5+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
6+ build-essential \
7+ cmake \
8+ gcc \
9+ make \
10+ pkg-config
11+
412# Install gems
513ENV APP_HOME /app
614ENV HOME /root
You can’t perform that action at this time.
0 commit comments