Compiling and running tapas on a local docker installation (#10)
* First version building tasks and mongodb * Creating container for local tests * Initial version * Added mongodb to correct network * Added auction house * Acknowledgments, Dockerfile for app * Added app to build * Dockerfile for app * Mapped app port to localhost:8080 Co-authored-by: Ubuntu <ubuntu@docker-tests.novalocal>
This commit is contained in:
13
tapas-auction-house/Dockerfile
Normal file
13
tapas-auction-house/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
# Dockerfile/Docker-Compose file based on an initial version authored by Alexander Lontke (ASSE, Fall Semester 2021)
|
||||
|
||||
FROM maven as build
|
||||
|
||||
COPY . /app
|
||||
|
||||
RUN mvn -f app/pom.xml --batch-mode --update-snapshots verify
|
||||
|
||||
FROM openjdk
|
||||
|
||||
COPY --from=build /app/target/tapas-auction-house-0.0.1-SNAPSHOT.jar ./tapas-auction-house-0.0.1-SNAPSHOT.jar
|
||||
|
||||
CMD java -jar tapas-auction-house-0.0.1-SNAPSHOT.jar
|
Reference in New Issue
Block a user