forked from quarkusio/quarkus-quickstarts
-
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.
- removal of repositories definition - Update of README to mention ISPN server version and removed docker info - Update of Dockerfile to be in sync with current template
- Loading branch information
Showing
4 changed files
with
23 additions
and
94 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#### | ||
# Before building the docker image run: | ||
# | ||
# mvn package -Pnative -Dnative-image.docker-build=true | ||
# | ||
# Then, build the image with: | ||
# | ||
# docker build -f src/main/docker/Dockerfile -t quarkus/infinispan-client . | ||
# | ||
# Then run the container using: | ||
# | ||
# docker run -i --rm -p 8081:8081 quarkus/infinispan-client | ||
# | ||
### | ||
FROM registry.fedoraproject.org/fedora-minimal | ||
WORKDIR /work/ | ||
COPY target/*-runner /work/application | ||
RUN chmod 775 /work | ||
EXPOSE 8081 | ||
CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] |