Added healthcheck to release container

This commit is contained in:
Jef Roosens 2021-04-12 22:55:52 +02:00
parent 6d4cf6feb6
commit 552cf4bf7b
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
2 changed files with 11 additions and 6 deletions

View file

@ -1,12 +1,7 @@
# We use a multi-stage build to end up with a very small final image
FROM alpine:latest AS builder
ARG MODE
ARG RUN_TESTS
ENV PATH "$PATH:/root/.cargo/bin"
# Needed for proper compiling of openssl-dev
ENV RUSTFLAGS="-C target-feature=-crt-static"
WORKDIR /usr/src/app