Add MSC3916-compatible giphy media repo proxy
This commit is contained in:
parent
6332613e13
commit
5da539ad84
6 changed files with 176 additions and 0 deletions
16
giphyproxy/Dockerfile
Normal file
16
giphyproxy/Dockerfile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
FROM golang:1-alpine AS builder
|
||||
|
||||
RUN apk add --no-cache ca-certificates
|
||||
WORKDIR /build/giphyproxy
|
||||
COPY . /build/giphyproxy
|
||||
ENV CGO_ENABLED=0
|
||||
RUN go build -o /usr/bin/giphyproxy
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||
COPY --from=builder /usr/bin/giphyproxy /usr/bin/giphyproxy
|
||||
|
||||
VOLUME /data
|
||||
WORKDIR /data
|
||||
CMD ["/usr/bin/giphyproxy"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue