Closed peterbourgon closed 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?
probably going to want the app to not run as root in the docker image with
RUN adduser -D -g '' appuser
USER appuser
~Is that still relevant given FROM scratch?~
FROM scratch
edit: Apparently it is good practice.
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?