forked from SunRed/discord-tweeter
* Update golang version to 1.24 * Update multiarch Dockerfile to be more ISA agnostic * Refactor existing code and properly structure project into modules * Get rid of global variables except where necessary (go:embed) * Add default values to Config * Add webserver with templates to finally correctly serve videos and gifs * Add tiny caching library to decrease api load and improve latency * Improve Webhook data preparation by filtering out redundant links from the tweet text and properly attaching videos and gifs in separate webhook request by utilising new webserver * Improve tests for filter function * Improve bake definition for easier CI integration
20 lines
566 B
Docker
20 lines
566 B
Docker
FROM golang:1.24 AS build
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends ca-certificates
|
|
|
|
WORKDIR /tmp/app
|
|
COPY . .
|
|
RUN go mod download && \
|
|
CGO_ENABLED=1 go build -a -buildmode=pie -trimpath -ldflags "-s -w -linkmode 'external' -extldflags '-static-pie' -X main.prefix=" -o discord-tweeter
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
WORKDIR /app
|
|
COPY --from=build /tmp/app/discord-tweeter .
|
|
#COPY ./config.example.toml ./config.toml
|
|
|
|
ENTRYPOINT [ "./discord-tweeter" ]
|
|
#CMD [ "./config.toml" ]
|