From 44c9793da161b6865f89fa964d2411afabadf147 Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Tue, 1 Aug 2023 10:03:08 +0200 Subject: [PATCH 1/4] Create Dockerfile --- Dockerfile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..32085cd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,29 @@ +# Use an official Golang runtime as the base image +FROM golang:1.18 as builder + +# Set the working directory in the container +WORKDIR /app + +# Copy the source code to the container +COPY . . + +# Build the application +RUN make build + +# Use a lightweight Alpine image as the base image for the final container +FROM alpine:latest + +# Set the working directory in the container +WORKDIR /app + +# Copy the binary from the builder stage to the final container +COPY --from=builder /app/listmonk-messenger.bin . + +# Copy the config.toml file (adjust the path if necessary) +COPY config.toml . + +# Expose the port that the application listens on (adjust if necessary) +EXPOSE 8082 + +# Run the application +CMD ["./listmonk-messenger.bin", "--config", "config.toml", "--msgr", "pinpoint", "--msgr", "ses"] From 3d5e636b120885f111a4e1ddd12cfc8dc501b902 Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Tue, 1 Aug 2023 10:06:50 +0200 Subject: [PATCH 2/4] added docker-publish --- .github/dependabot.yml | 15 +++++ .github/workflows/docker-publish.yml | 88 ++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/docker-publish.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4b4801a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +--- +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + - package-ecosystem: gomod + directory: /tests + schedule: + interval: weekly \ No newline at end of file diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 0000000..22baca2 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,88 @@ +name: Docker Listmonk messenger +# +on: + push: + branches: + - master + - main + tags: + - '*' +# +jobs: + imagemagick-libvips-golang-docker: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + # Checkout the repository to the GitHub Actions runner + - name: Checkout + uses: actions/checkout@v3 + + # Repo metadata + - name: Repo metadata + id: repo + uses: actions/github-script@v4 + with: + script: | + const repo = await github.repos.get(context.repo) + return repo.data + # Prepare variables + - name: Prepare + id: prep + run: | + REG=ghcr.io + IMAGE=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') + DOCKER_IMAGE=${REG}/${IMAGE} + VERSION=nool + if [ "${{ github.event_name }}" = "schedule" ]; then + VERSION=nightly + elif [[ $GITHUB_REF == refs/tags/* ]]; then + VERSION=${GITHUB_REF#refs/tags/} + elif [[ $GITHUB_REF == refs/heads/* ]]; then + VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') + if [ "${{ github.event.repository.default_branch }}" = "$VERSION" ]; then + VERSION=latest + fi + elif [[ $GITHUB_REF == refs/pull/* ]]; then + VERSION=pr-${{ github.event.number }} + fi + TAGS="${DOCKER_IMAGE}:${VERSION}" + if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + MINOR=${VERSION%.*} + MAJOR=${MINOR%.*} + TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR},${DOCKER_IMAGE}:latest" + fi + echo ::set-output name=version::${VERSION} + echo ::set-output name=tags::${TAGS} + echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + # Set up Buildx env + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + # Login + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Build image and push to registry + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64 + push: true + tags: ${{ steps.prep.outputs.tags }} + labels: | + org.opencontainers.image.title=${{ fromJson(steps.repo.outputs.result).name }} + org.opencontainers.image.description=${{ fromJson(steps.repo.outputs.result).description }} + org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }} + org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).html_url }} + org.opencontainers.image.version=${{ steps.prep.outputs.version }} + org.opencontainers.image.created=${{ steps.prep.outputs.created }} + org.opencontainers.image.revision=${{ github.sha }} + org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }} \ No newline at end of file From 469b4f7499bc210a5a2e9fc7082bcfb98811fc55 Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Tue, 1 Aug 2023 10:07:33 +0200 Subject: [PATCH 3/4] added listmonk-messenger --- .github/workflows/docker-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 22baca2..935bb66 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -9,7 +9,7 @@ on: - '*' # jobs: - imagemagick-libvips-golang-docker: + listmonk-messenger-docker: runs-on: ubuntu-latest permissions: contents: read From 2ff80d6363a5cb9ea04b3c97ca0b1b40db518d70 Mon Sep 17 00:00:00 2001 From: Allan Nava Date: Tue, 1 Aug 2023 10:08:48 +0200 Subject: [PATCH 4/4] removed copy config.toml --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 32085cd..c1b4754 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ WORKDIR /app COPY --from=builder /app/listmonk-messenger.bin . # Copy the config.toml file (adjust the path if necessary) -COPY config.toml . +#COPY config.toml . # Expose the port that the application listens on (adjust if necessary) EXPOSE 8082