mirror of
https://github.com/TeamPiped/Mautrix-Bot.git
synced 2024-08-14 23:56:15 +00:00
Initial commit.
This commit is contained in:
parent
6108d06854
commit
125b3e4bc3
7 changed files with 961 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue