Merge pull request #543 from mautrix/add-dev-dockerfile

Add development specific Dockerfile
This commit is contained in:
Nick Mills-Barrett 2022-08-14 16:28:53 +01:00 committed by GitHub
commit 78a8a759c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Dockerfile.dev Normal file
View file

@ -0,0 +1,13 @@
FROM golang:1-alpine3.16
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev bash jq yq curl
COPY . /build
WORKDIR /build
RUN go build -o /whatsapp
# Setup development stack using gow
RUN go install github.com/mitranim/gow@latest
RUN echo 'gow run /build $@' > /usr/bin/mautrix-whatsapp \
&& chmod +x /usr/bin/mautrix-whatsapp
VOLUME /data