Initial commit.

This commit is contained in:
FireMasterK 2021-02-24 00:15:20 +05:30
parent 6108d06854
commit 125b3e4bc3
No known key found for this signature in database
GPG key ID: 8DFF5DD33E93DB58
7 changed files with 961 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM golang:alpine AS build
WORKDIR /app/
COPY . .
RUN go build -ldflags "-s -w" bot.go
FROM alpine:edge
WORKDIR /app/
COPY --from=build /app/bot /app/piped-mautrix
CMD ./piped-mautrix