Compare commits

..

No commits in common. "7016bfdec64f741d90a977d8ce6591da80d8cfa1" and "c230bf19d9e21b50dd461c0f3b8ed90e067dd584" have entirely different histories.

3 changed files with 18 additions and 23 deletions

View file

@ -1,18 +1,23 @@
pipeline: pipeline:
build-image:
image: r.j3ss.co/img:latest
commands:
- echo $REGISTRY_SECRET | img login --username Nulo --password-stdin gitea.nulo.in
- img build -t gitea.nulo.in/nulo/sitio-build:latest tooling/Containerfile
- img push gitea.nulo.in/nulo/sitio-build:latest
secrets: [REGISTRY_SECRET]
when:
path:
include: ["tooling/*", ".woodpecker.yml"]
build: build:
image: gitea.nulo.in/nulo/sitio-build:latest image: docker.io/alpine:3.17
commands: commands:
- |
echo "172.17.0.1 host.containers.internal" >> /etc/hosts
echo "http://host.containers.internal/alpine/alpine/v3.17/main
http://host.containers.internal/alpine/alpine/v3.17/community" > /etc/apk/repositories
- apk add nodejs icu-data-full npm lua5.1
- |
npm config set -g registry http://host.containers.internal/npm
npm install -g pnpm
# https://gitea.nulo.in/Nulo/openring/releases/tag/1.0.1-nulo-sitio-2
- |
wget -nv -O /bin/openring https://gitea.nulo.in/attachments/3ddb2799-3af7-4239-a7fd-9d31670aefb8
chmod +x /bin/openring
- pnpm install - pnpm install
- ./tool refresh_feeds - ./tool refresh_feeds
- ./tool check - ./tool check

View file

@ -23,8 +23,7 @@ article header {
article h1 { article h1 {
font-size: 32px; font-size: 32px;
} }
article main, article main {
section#conexiones {
max-width: 45rem; max-width: 45rem;
margin: 0 auto; margin: 0 auto;
} }

View file

@ -1,9 +0,0 @@
FROM docker.io/alpine:3.17
RUN apk add --no-cache nodejs icu-data-all npm lua5.1
# https://gitea.nulo.in/Nulo/openring/releases/tag/1.0.1-nulo-sitio-2
RUN wget -nv -O /bin/openring https://gitea.nulo.in/attachments/3ddb2799-3af7-4239-a7fd-9d31670aefb8 && \
chmod +x /bin/openring
RUN npm install --global pnpm