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
6 changes: 3 additions & 3 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.20.3-alpine as builder
FROM golang:1.23.0-alpine AS builder

RUN apk add --no-cache bash upx
RUN apk add --no-cache bash upx git

# Set working directory
WORKDIR /usr/src/librespeed-cli
Expand All @@ -16,4 +16,4 @@ FROM alpine:3.17
# Copy librespeed-cli binary
COPY --from=builder /usr/src/librespeed-cli/out/librespeed-cli* /bin/librespeed-cli

CMD ["/bin/librespeed-cli"]
ENTRYPOINT ["/bin/librespeed-cli"]