Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ 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 alpine:3.16
RUN apk add --no-cache ca-certificates
FROM scratch
WORKDIR /app
COPY --from=build_base /build/speedtest ./
COPY settings.toml ./

USER nobody
EXPOSE 8989

CMD ["./speedtest"]