fastly / fastly-exporter

A Prometheus exporter for the Fastly Real-time Analytics API
Apache License 2.0
99 stars 36 forks source link

Publish Docker images #75

Closed peterbourgon closed 3 years ago

peterbourgon commented 3 years ago

This PR automates the release process, including creating a Docker image in ghcr.io, whenever a new tag is pushed.

@mrnetops Does this Docker image seem OK to you?

mrnetops commented 3 years ago

probably going to want the app to not run as root in the docker image with

Create appuser

RUN adduser -D -g '' appuser

USER appuser

peterbourgon commented 3 years ago

~Is that still relevant given FROM scratch?~

edit: Apparently it is good practice.