File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
FROM redmine:3.1
2
2
3
3
ENV PASSENGER_VERSION 5.1.2
4
+
4
5
RUN buildDeps=' \
5
6
make \
6
7
' \
7
8
&& set -x \
8
9
&& apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* \
9
10
&& gem install passenger --version "$PASSENGER_VERSION" \
10
11
&& apt-get purge -y --auto-remove $buildDeps
12
+
13
+ # pre-download the PassengerAgent and the NGINX engine
11
14
RUN set -x \
12
15
&& passenger-config install-agent \
13
- && passenger-config install-standalone-runtime
16
+ && passenger-config download-nginx-engine
14
17
15
18
CMD ["passenger" , "start" ]
Original file line number Diff line number Diff line change 1
1
FROM redmine:3.2
2
2
3
3
ENV PASSENGER_VERSION 5.1.2
4
+
4
5
RUN buildDeps=' \
5
6
make \
6
7
' \
7
8
&& set -x \
8
9
&& apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* \
9
10
&& gem install passenger --version "$PASSENGER_VERSION" \
10
11
&& apt-get purge -y --auto-remove $buildDeps
12
+
13
+ # pre-download the PassengerAgent and the NGINX engine
11
14
RUN set -x \
12
15
&& passenger-config install-agent \
13
- && passenger-config install-standalone-runtime
16
+ && passenger-config download-nginx-engine
14
17
15
18
CMD ["passenger" , "start" ]
Original file line number Diff line number Diff line change 1
1
FROM redmine:3.3
2
2
3
3
ENV PASSENGER_VERSION 5.1.2
4
+
4
5
RUN buildDeps=' \
5
6
make \
6
7
' \
7
8
&& set -x \
8
9
&& apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* \
9
10
&& gem install passenger --version "$PASSENGER_VERSION" \
10
11
&& apt-get purge -y --auto-remove $buildDeps
12
+
13
+ # pre-download the PassengerAgent and the NGINX engine
11
14
RUN set -x \
12
15
&& passenger-config install-agent \
13
- && passenger-config install-standalone-runtime
16
+ && passenger-config download-nginx-engine
14
17
15
18
CMD ["passenger" , "start" ]
Original file line number Diff line number Diff line change @@ -9,8 +9,10 @@ RUN buildDeps=' \
9
9
&& apt-get update && apt-get install -y --no-install-recommends $buildDeps && rm -rf /var/lib/apt/lists/* \
10
10
&& gem install passenger --version "$PASSENGER_VERSION" \
11
11
&& apt-get purge -y --auto-remove $buildDeps
12
+
13
+ # pre-download the PassengerAgent and the NGINX engine
12
14
RUN set -x \
13
15
&& passenger-config install-agent \
14
- && passenger-config install-standalone-runtime
16
+ && passenger-config download-nginx-engine
15
17
16
18
CMD ["passenger", "start"]
You can’t perform that action at this time.
0 commit comments