Prepare agola build
This commit is contained in:
parent
dcb4daa7eb
commit
c391ab0781
5 changed files with 66 additions and 3 deletions
38
.agola/config.yml
Normal file
38
.agola/config.yml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
version: v0
|
||||||
|
runs:
|
||||||
|
- name: Build
|
||||||
|
tasks:
|
||||||
|
- name: checkout code
|
||||||
|
runtime:
|
||||||
|
type: pod
|
||||||
|
containers:
|
||||||
|
- image: docker.io/alpine/git
|
||||||
|
steps:
|
||||||
|
- clone:
|
||||||
|
- save_to_workspace:
|
||||||
|
contents:
|
||||||
|
- source_dir: .
|
||||||
|
dest_dir: .
|
||||||
|
paths:
|
||||||
|
- '**'
|
||||||
|
- name: build docker image
|
||||||
|
runtime:
|
||||||
|
containers:
|
||||||
|
- image: gcr.io/kaniko-project/executor:debug
|
||||||
|
shell: /busybox/sh
|
||||||
|
steps:
|
||||||
|
- restore_workspace:
|
||||||
|
dest_dir: .
|
||||||
|
- run:
|
||||||
|
name: generate docker config
|
||||||
|
command: |
|
||||||
|
cat << EOF > /kaniko/.docker/config.json
|
||||||
|
{
|
||||||
|
"auths": {
|
||||||
|
"code.icb4dc0.de": { "auth" : "$DOCKERAUTH" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
- run: /kaniko/executor --destination code.icb4dc0.de/prskr/blog:latest
|
||||||
|
depends:
|
||||||
|
- checkout code
|
8
.dockerignore
Normal file
8
.dockerignore
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
public/
|
||||||
|
.github/
|
||||||
|
.git/
|
||||||
|
|
||||||
|
Dockerfile
|
||||||
|
.dockerignore
|
||||||
|
.gitignore
|
||||||
|
.gitmodules
|
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -13,4 +13,9 @@ hugo.linux
|
||||||
/.hugo_build.lock
|
/.hugo_build.lock
|
||||||
|
|
||||||
# IntelliJ project files
|
# IntelliJ project files
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
|
*.o
|
||||||
|
cmake-build-debug
|
||||||
|
out/
|
||||||
|
CMakeLists.txt
|
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
FROM docker.io/alpine:latest as builder
|
||||||
|
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
COPY . ./
|
||||||
|
|
||||||
|
RUN apk add -U hugo && \
|
||||||
|
hugo --minify --environment production
|
||||||
|
|
||||||
|
FROM docker.io/caddy:2-alpine
|
||||||
|
|
||||||
|
COPY --from=builder /src/public /usr/share/caddy
|
|
@ -1,6 +1,6 @@
|
||||||
baseURL = 'https://www.1533b4dc0.de/'
|
baseURL = 'https://www.icb4dc0.de/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = '1533B4dC0.de'
|
title = 'icb4dc0.de'
|
||||||
theme = "anubis"
|
theme = "anubis"
|
||||||
paginate = 10
|
paginate = 10
|
||||||
enableEmoji = true
|
enableEmoji = true
|
||||||
|
|
Loading…
Reference in a new issue