mirror of
https://github.com/louislam/dockge.git
synced 2024-11-22 16:24:01 +01:00
11 lines
307 B
Docker
11 lines
307 B
Docker
|
############################################
|
||
|
# Build in Golang
|
||
|
############################################
|
||
|
FROM golang:1.21.4-bookworm
|
||
|
WORKDIR /app
|
||
|
ARG TARGETPLATFORM
|
||
|
COPY ./extra/healthcheck.go ./extra/healthcheck.go
|
||
|
|
||
|
# Compile healthcheck.go
|
||
|
RUN go build -x -o ./extra/healthcheck ./extra/healthcheck.go
|