Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 981 Bytes

README.md

File metadata and controls

47 lines (31 loc) · 981 Bytes

Weekly Challenge - VMware Buildpacks team

Problems:

  1. Boggle Mayhem

1. Using Gradle to build and run the application

Build the application

gradlew build

Run the application

gradlew run

2. Using Paketo Buildpacks to build and run the application using OCI Images

Building the image

First, you have to select the default build, in this case is paketobuildpacks/builder:base

pack config default-builder paketobuildpacks/builder:base

Now build the image with the following command:

pack build weekly-challenges-app

Running the image

Run the following command to run the container with the created image and access it with bash.

docker run -it weekly-challenges-app bash

In the container, run the following command to start the application:

java com.vmware.bhenao.ProblemSolver