add container_name, fix health whitespace

This commit is contained in:
Maxi Quoß
2023-02-11 22:54:19 +01:00
parent 9a1a816f25
commit 3b9decd572
2 changed files with 2 additions and 1 deletions

View File

@@ -17,5 +17,5 @@ RUN apk update &&\
WORKDIR /app
COPY --from=downloader /app/upsnap upsnap
HEALTHCHECK --interval=10s \
CMD curl -fs "http://localhost:8090/api/health " || exit 1
CMD curl -fs "http://localhost:8090/api/health" || exit 1
ENTRYPOINT ["./upsnap", "serve", "--http=0.0.0.0:8090"]