We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2aa0d commit 548fb6aCopy full SHA for 548fb6a
1 file changed
.github/workflows/build.yml
@@ -11,7 +11,10 @@ jobs:
11
12
steps:
13
- uses: actions/checkout@v3
14
- - name: Build the Container image
+ - name: Build the Image
15
run: docker build . --file Dockerfile --tag appuio/example-php-docker-helloworld:latest
16
- - name: Run the Container image
17
- run: docker run -d appuio/example-php-docker-helloworld:latest
+ - name: Run the Container
+ run: docker run -d --publish 8080:8080 appuio/example-php-docker-helloworld:latest
18
+ - name: Test the app
19
+ run: sleep 11 && curl -f localhost:8080/health/
20
+
0 commit comments