Install yq from alpine repos
This commit is contained in:
15
Dockerfile
15
Dockerfile
@ -1,5 +1,10 @@
|
||||
FROM golang:1-alpine3.12 AS builder
|
||||
|
||||
RUN echo $'\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/main\n\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/testing\n\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
|
||||
|
||||
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev
|
||||
|
||||
COPY . /build
|
||||
@ -8,15 +13,15 @@ RUN go build -o /usr/bin/mautrix-whatsapp
|
||||
|
||||
FROM alpine:3.12
|
||||
|
||||
ARG TARGETARCH=amd64
|
||||
ARG YQ_DOWNLOAD_ADDR=https://github.com/mikefarah/yq/releases/download/3.3.2/yq_linux_${TARGETARCH}
|
||||
RUN echo $'\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/main\n\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/testing\n\
|
||||
@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
|
||||
|
||||
ENV UID=1337 \
|
||||
GID=1337
|
||||
|
||||
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq curl && \
|
||||
curl -sLo yq ${YQ_DOWNLOAD_ADDR} && \
|
||||
chmod +x yq && mv yq /usr/bin/yq
|
||||
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq yq@edge curl
|
||||
|
||||
COPY --from=builder /usr/bin/mautrix-whatsapp /usr/bin/mautrix-whatsapp
|
||||
COPY --from=builder /build/example-config.yaml /opt/mautrix-whatsapp/example-config.yaml
|
||||
|
Reference in New Issue
Block a user