Skip to content

Commit

Permalink
removes healthchecker from dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
timbastin committed Feb 11, 2024
1 parent 6b9e376 commit 1e56d38
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
# 1.17-alpine bug : standard_init_linux.go:228: exec user process caused: no such file or directory
ARG GOLANG_VERSION=1.22

# Building custom health checker
FROM golang:$GOLANG_VERSION as health-build-env

# Copying source
WORKDIR /go/src/app
COPY ./healthcheck /go/src/app

# Installing dependencies
RUN go get -d -v ./...

# Compiling
RUN go build -o /go/bin/healthchecker

# Building bouncer
FROM golang:$GOLANG_VERSION as build-env

Expand Down

0 comments on commit 1e56d38

Please sign in to comment.