forked from alfio-event/alf.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/JAPANIZE
* develop: (23 commits) alfio-event#286 mollie payment support: add new status for ticket reservation, initial stubs for user facing page alfio-event#286 mollie payment support: add initial stubs for handling the webhook alfio-event#286 mollie payment support: add initial stubs for handling the webhook alfio-event#286 mollie: enable only when EUR is used as currency alfio-event#286 initial steps for supporting mollie: create a payment + redirect alfio-event#286 initial stubs for supporting mollie as a payment provider alfio-event#286 initial stubs for supporting mollie as a payment provider restore snapshot version fix dockerfile fix alfio-event#297 - enable "save" button for PDF resources update changelog fix alfio-event#298 fix alfio-event#298 update snapshot version fix alfio-event#297 - enable "save" button for PDF resources update changelog [Gradle Release Plugin] - new version commit: '1.12-SNAPSHOT'. [Gradle Release Plugin] - pre tag commit: '1.11'. improve "cancel reservation" layout fix typo ...
- Loading branch information
Showing
37 changed files
with
411 additions
and
100 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
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
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
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 |
---|---|---|
|
@@ -5,27 +5,14 @@ | |
# Pull base image. | ||
FROM @BASE_IMAGE@ | ||
|
||
# Install Java. | ||
RUN \ | ||
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \ | ||
apt-get install -y software-properties-common && \ | ||
add-apt-repository -y ppa:webupd8team/java && \ | ||
apt-get update && \ | ||
apt-get install -y oracle-java8-installer && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
rm -rf /var/cache/oracle-jdk8-installer | ||
|
||
# Define commonly used JAVA_HOME variable | ||
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle | ||
|
||
COPY ./@APP_NAME@-@[email protected] /@APP_NAME@/ | ||
COPY ./@APP_NAME@-@[email protected] /alf.io/ | ||
|
||
# Define working directory. | ||
WORKDIR /@APP_NAME@ | ||
RUN mkdir /@APP_NAME@/logs | ||
WORKDIR /alf.io | ||
RUN mkdir /alf.io/logs | ||
|
||
VOLUME ["/@APP_NAME@/logs"] | ||
VOLUME ["/alf.io/logs"] | ||
|
||
ENTRYPOINT ["java", "-jar", "/@APP_NAME@/@APP_NAME@-@[email protected]"] | ||
ENTRYPOINT ["java", "-jar", "/alf.io/@APP_NAME@-@[email protected]"] | ||
|
||
EXPOSE @PORT@ |
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
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
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
Oops, something went wrong.