/dorkly

Contains source code for GitHub Action and docker bits for backend service

Primary LanguageGoOtherNOASSERTION

go workflow

Dorkly Flags Backend Bits

More info on the Dorkly project

This repo contains the backend bits for the Dorkly Flags project:

  1. Go code that runs in GitHub Actions converting human-friendly yaml files to a format that can be consumed by the ld-relay appliance.
  2. Dockerfile + friends to build the image used in the deployed backend service.

Docker

The Dockerfile is used to build the image used in the deployed backend service. It is built on top of the ld-relay image. To build and publish it: (requires docker login with permissions to push to drichelson)

export TAG=0.0.6 && docker build --platform=linux/amd64 -t drichelson/dorkly:$TAG ./docker/ && docker push drichelson/dorkly:$TAG