Skip to content

Commit 655795c

Browse files
committed
Merge branch 'release/2.2.4'
2 parents 5579712 + c5ac30f commit 655795c

File tree

119 files changed

+535
-1017
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+535
-1017
lines changed

.github/workflows/all.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/latest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Push the Docker Image for the Latest Nim Version to Docker Hub
1+
name: Latest version
22

33
on:
44
push:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build_and_push:
10-
name: Latest Nim Version
10+
name: Build and push
1111
runs-on: ubuntu-latest
1212

1313
steps:
@@ -22,12 +22,12 @@ jobs:
2222
username: ${{ vars.DOCKERHUB_USERNAME }}
2323
password: ${{ secrets.DOCKERHUB_TOKEN }}
2424

25-
- name: Build the builder-pusher app
26-
run: nimble build
25+
- name: Install the builder-pusher app
26+
run: nimble install dhbp@">=1.0.3"
2727

2828
- name: Set up multiarch builder
29-
run: ./bin/nimage setup
29+
run: dhbp setup
3030

3131
- name: Build and push the image
32-
run: ./bin/nimage build-and-push --latest
32+
run: dhbp build-and-push --latest
3333

Dockerfiles/0.13.0/regular/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM nimlang/nim:0.13.0-alpine-slim
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache git mercurial openssl
94
RUN git clone https://github.com/nim-lang/nimble.git;\
105
cd nimble; nim -d:release c -r src/nimble -y install;\

Dockerfiles/0.13.0/slim/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM alpine:3.20
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache g++ curl tar xz nodejs
94
RUN mkdir -p /nim; \
105
curl -sL "https://nim-lang.org/download/nim-0.13.0.tar.xz" \

Dockerfiles/0.14.0/regular/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM nimlang/nim:0.14.0-alpine-slim
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache git mercurial openssl
94
RUN git clone https://github.com/nim-lang/nimble.git;\
105
cd nimble; nim -d:release c -r src/nimble -y install;\

Dockerfiles/0.14.0/slim/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM alpine:3.20
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache g++ curl tar xz nodejs
94
RUN mkdir -p /nim; \
105
curl -sL "https://nim-lang.org/download/nim-0.14.0.tar.xz" \

Dockerfiles/0.14.2/regular/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM nimlang/nim:0.14.2-alpine-slim
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache git mercurial openssl
94
RUN git clone https://github.com/nim-lang/nimble.git;\
105
cd nimble; nim -d:release c -r src/nimble -y install;\

Dockerfiles/0.14.2/slim/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM alpine:3.20
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache g++ curl tar xz nodejs
94
RUN mkdir -p /nim; \
105
curl -sL "https://nim-lang.org/download/nim-0.14.2.tar.xz" \

Dockerfiles/0.14.3/regular/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM nimlang/nim:0.14.3-alpine-slim
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache git mercurial openssl
94
RUN git clone https://github.com/nim-lang/nimble.git;\
105
cd nimble; nim -d:release c -r src/nimble -y install;\

Dockerfiles/0.14.3/slim/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
FROM alpine:3.20
2-
LABEL authors="Constantine Molchanov <moigagoo@duck.com>, \
3-
Guilherme Thomazi Bonicontro <thomazi@linux.com>, \
4-
Dominik Picheta <http://picheta.me>, \
5-
nigredo-tori <https://github.com/nigredo-tori>, \
6-
markprocess <https://github.com/markprocess>, \
7-
theAkito <akito.kitsune@protonmail.com>"
2+
LABEL authors="https://github.com/nim-lang/docker-images/graphs/contributors"
83
RUN apk add --no-cache g++ curl tar xz nodejs
94
RUN mkdir -p /nim; \
105
curl -sL "https://nim-lang.org/download/nim-0.14.3.tar.xz" \

0 commit comments

Comments
 (0)