Skip to content

Commit

Permalink
UI working (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
kn0wmad authored Feb 13, 2022
1 parent 1c561d0 commit d9ebde5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM arm64v8/alpine:3.12

RUN apk update
RUN apk add tini
RUN apk add tini curl

ADD ./hello-world/target/aarch64-unknown-linux-musl/release/hello-world /usr/local/bin/hello-world
ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ health-checks:
type: docker
image: main
entrypoint: "sh"
args: ["-c", "curl --silent --show-error --fail http://loacalhost:80"]
args: ["-c", "curl --silent --show-error --fail http://localhost:80"]
# When `inject` is true, the health check will use the main image to run the health check. This is faster as there is no need to spin up an additional docker container
# When `inject` is false, the health check will use whatever image is specified. This is useful when using a system image with additional utilities to run a health check. If inject=false, then system must equal true
inject: true
Expand Down

0 comments on commit d9ebde5

Please sign in to comment.