mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
14 lines
No EOL
198 B
Docker
14 lines
No EOL
198 B
Docker
FROM alpine:latest as builder
|
|
|
|
RUN apk add go
|
|
|
|
WORKDIR /build
|
|
COPY . /build/
|
|
|
|
RUN go build .
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=builder /build/web-proxy /bin/web-proxy
|
|
|
|
ENTRYPOINT [ "/bin/web-proxy" ] |