-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ MAINTAINER Tim Wagner <[email protected]> | |
|
||
# define versions | ||
ENV APPSERVER_DIST_VERSION 1.1.29 | ||
ENV APPSERVER_RUNTIME_VERSION 1.1.12 | ||
ENV APPSERVER_RUNTIME_BUILD 172 | ||
ENV APPSERVER_RUNTIME_VERSION 1.1.13 | ||
ENV APPSERVER_RUNTIME_BUILD 178 | ||
|
||
# update the sources list | ||
RUN apt-get update \ | ||
|
@@ -28,7 +28,7 @@ RUN apt-get update \ | |
|
||
# download runtime in specific version | ||
RUN wget -O /tmp/appserver-runtime.deb \ | ||
https://github.com/appserver-io/appserver/releases/download/${APPSERVER_DIST_VERSION}/appserver-runtime_${APPSERVER_RUNTIME_VERSION}-${APPSERVER_RUNTIME_BUILD}.deb9_amd64.deb \ | ||
https://github.com/appserver-io/appserver/releases/download/${APPSERVER_DIST_VERSION}/appserver-runtime_${APPSERVER_RUNTIME_VERSION}-${APPSERVER_RUNTIME_BUILD}.deb9_amd64.deb | ||
|
||
# install runtime | ||
&& dpkg -i /tmp/appserver-runtime.deb; exit 0 | ||
|