This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: dockerfile and github based CI build for Africastalking variant…
… (#174) ## Summary * fixed missing error handler in main * add injectable build string in main * add (dynamically linked) docker build * add github CI workflow * add extra but useful dev files in dev folder * closes #93 ## Notes * We'll move to a self-hosted CI runner once it is installed on Gitea. Reviewed-on: https://git.grassecon.net/urdt/ussd/pulls/174 Co-authored-by: Mohammed Sohail <[email protected]> Co-committed-by: Mohammed Sohail <[email protected]>
- Loading branch information
1 parent
109a2a2
commit 66b5843
Showing
7 changed files
with
145 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
!/cmd/africastalking | ||
!/common | ||
!/config | ||
!/initializers | ||
!/internal | ||
!/models | ||
!/remote | ||
!/services | ||
!/LICENSE | ||
!/README.md | ||
!/go.* | ||
!/.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to GHCR Docker registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set outputs | ||
run: | | ||
echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV \ | ||
&& echo "RELEASE_SHORT_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | ||
- name: Build and push image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
platforms: | ||
- linux/amd64 | ||
- linux/arm64 | ||
push: true | ||
build-args: | | ||
BUILD=${{ env.RELEASE_SHORT_COMMIT }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
tags: | | ||
ghcr.io/grassrootseconomics/urdt-ussd:latest | ||
ghcr.io/grassrootseconomics/urdt-ussd:${{ env.RELEASE_TAG }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
FROM golang:1.23.0-bookworm AS build | ||
|
||
ENV CGO_ENABLED=1 | ||
|
||
ARG BUILDPLATFORM | ||
ARG TARGETPLATFORM | ||
ARG BUILD=dev | ||
|
||
WORKDIR /build | ||
COPY . . | ||
RUN apt update && apt install libgdbm-dev | ||
RUN git clone https://git.defalsify.org/vise.git go-vise | ||
|
||
WORKDIR /build/services/registration | ||
RUN echo "Compiling go-vise files" | ||
RUN make VISE_PATH=/build/go-vise -B | ||
|
||
WORKDIR /build | ||
RUN echo "Building on $BUILDPLATFORM, building for $TARGETPLATFORM" | ||
RUN go mod download | ||
RUN go build -o ussd-africastalking -ldflags="-X main.build=${BUILD} -s -w" cmd/africastalking/main.go | ||
|
||
FROM debian:bookworm-slim | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update && apt install libgdbm-dev ca-certificates -y | ||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /service | ||
|
||
COPY --from=build /build/ussd-africastalking . | ||
COPY --from=build /build/LICENSE . | ||
COPY --from=build /build/README.md . | ||
COPY --from=build /build/services ./services | ||
COPY --from=build /build/.env . | ||
|
||
EXPOSE 7123 | ||
|
||
CMD ["./ussd-africastalking"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
url: http://localhost:7123 | ||
dial: "*384*96#" | ||
phoneNumber: +254722123456 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
ussd-pg-store: | ||
image: postgres:17-alpine | ||
restart: unless-stopped | ||
user: postgres | ||
environment: | ||
- POSTGRES_PASSWORD=postgres | ||
- POSTGRES_USER=postgres | ||
volumes: | ||
- ./init_db.sql:/docker-entrypoint-initdb.d/init_db.sql | ||
- ussd-pg:/var/lib/postgresql/data | ||
ports: | ||
- "127.0.0.1:5432:5432" | ||
healthcheck: | ||
test: ["CMD-SHELL", "pg_isready"] | ||
interval: 10s | ||
timeout: 5s | ||
retries: 5 | ||
volumes: | ||
ussd-pg: | ||
driver: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE DATABASE urdt_ussd; |