speedtest-go/Dockerfile

19 lines
398 B
Docker
Raw Permalink Normal View History

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 ./ ./
RUN go build -ldflags "-w -s" -trimpath -o speedtest .
FROM alpine:3.16
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=build_base /build/speedtest ./
COPY settings.toml ./
USER nobody
EXPOSE 8989
2020-08-10 23:48:13 -04:00
CMD ["./speedtest"]