You've already forked speedtest-go
18 lines
361 B
Docker
18 lines
361 B
Docker
FROM golang:1.18-alpine AS build_base
|
|
RUN apk add --no-cache git gcc ca-certificates libc-dev
|
|
WORKDIR /build
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY ./ ./
|
|
ENV CGO_ENABLED=0
|
|
RUN go build -ldflags "-w -s" -trimpath -o speedtest .
|
|
|
|
FROM scratch
|
|
WORKDIR /app
|
|
COPY --from=build_base /build/speedtest ./
|
|
COPY settings.toml ./
|
|
|
|
EXPOSE 8989
|
|
|
|
CMD ["./speedtest"]
|