You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
376 B
Docker
14 lines
376 B
Docker
FROM golang:1.17-alpine3.15 AS builder
|
|
WORKDIR /app
|
|
RUN apk -U --no-cache add git
|
|
COPY . .
|
|
RUN go build
|
|
|
|
FROM alpine:3.15
|
|
LABEL LastUpdate="2022-04-04"
|
|
COPY --from=builder /app/telegram-group2mastodon /bin/telegram-group2mastodon
|
|
RUN apk -U --no-cache upgrade
|
|
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
|
|
USER appuser
|
|
ENTRYPOINT /bin/telegram-group2mastodon run
|