Compare commits
2 commits
03493aac34
...
d30f0f01c5
Author | SHA1 | Date | |
---|---|---|---|
d30f0f01c5 | |||
fa5df79743 |
4 changed files with 32 additions and 17 deletions
28
.forgejo/workflows/build-push.yml
Normal file
28
.forgejo/workflows/build-push.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Building:
|
||||||
|
runs-on: slave
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Startup DIND
|
||||||
|
run: /dockerd-entrypoint.sh dockerd &
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.ptr.moe
|
||||||
|
username: ${{ gitea.repository_owner }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build & Push
|
||||||
|
uses: docker/build-push-action@master
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
context: .
|
||||||
|
platforms: linux/amd64
|
||||||
|
tags: git.ptr.moe/baalajimaestro/nim-censor-bot:latest
|
|
@ -1,13 +0,0 @@
|
||||||
when:
|
|
||||||
- event: push
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Build & Push
|
|
||||||
image: git.baalajimaestro.me/baalajimaestro/build-runner
|
|
||||||
commands:
|
|
||||||
- /dockerd-entrypoint.sh dockerd 2&> /dev/null &
|
|
||||||
- echo $DOCKER_PASSWORD | docker login git.baalajimaestro.me --username ${CI_REPO_OWNER} --password-stdin
|
|
||||||
- docker build . -t git.baalajimaestro.me/baalajimaestro/nim-censor-bot:latest
|
|
||||||
- docker push git.baalajimaestro.me/baalajimaestro/nim-censor-bot:latest
|
|
||||||
secrets: [ docker_password ]
|
|
||||||
privileged: true
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM nimlang/nim:2.0.2-alpine as builder
|
FROM nimlang/nim:2.0.8-alpine as builder
|
||||||
|
|
||||||
RUN apk update && apk add autoconf \
|
RUN apk update && apk add autoconf \
|
||||||
automake \
|
automake \
|
||||||
|
@ -14,7 +14,7 @@ RUN apk update && apk add autoconf \
|
||||||
sqlite-static
|
sqlite-static
|
||||||
|
|
||||||
|
|
||||||
ENV LIBRESSL_VERSION v3.8.3
|
ENV LIBRESSL_VERSION v3.9.2
|
||||||
|
|
||||||
# Compile LibreSSL Portable from source
|
# Compile LibreSSL Portable from source
|
||||||
RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \
|
RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \
|
||||||
|
|
|
@ -11,5 +11,5 @@ bin = @["nim_censor_bot"]
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
requires "nim >= 2.0.0"
|
requires "nim >= 2.0.0"
|
||||||
requires "telebot >= 2024.02.20"
|
requires "telebot >= 2024.05.05"
|
||||||
requires "norm >= 2.8.2"
|
requires "norm >= 2.8.3"
|
||||||
|
|
Loading…
Reference in a new issue