Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker-images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
infra
static pages
docker-images
Compare revisions
75bc4be0dc6fd32430ceed9e066a7d685c582891 to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
infra/static-pages/docker-images
Select target project
No results found
master
Select Git revision
Branches
master
1 result
Swap
Target
sandro/docker-images
Select target project
infra/static-pages/docker-images
sandro/docker-images
2 results
75bc4be0dc6fd32430ceed9e066a7d685c582891
Select Git revision
Branches
bookworm-cleanup
master
2 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source
8
try to include libwebp
· 39dd716c
psy
authored
Oct 19, 2023
39dd716c
lets see what ldconfig actually does
· a77f993a
psy
authored
Oct 19, 2023
a77f993a
another try to hugo on bookworm
· b3ec9108
psy
authored
Apr 6, 2024
b3ec9108
Revert "another try to hugo on bookworm"
· 04e662e5
psy
authored
Apr 6, 2024
This reverts commit
b3ec9108
.
04e662e5
Revert "lets see what ldconfig actually does"
· cf4231c3
psy
authored
Apr 6, 2024
This reverts commit
a77f993a
.
cf4231c3
..
· fd4e4516
psy
authored
Apr 6, 2024
fd4e4516
try to run hugo after installation
· 5c5254d1
psy
authored
Apr 6, 2024
5c5254d1
add debian trixie (atm testing) hugo image
· 583701cd
psy
authored
Apr 6, 2024
583701cd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+10
-1
10 additions, 1 deletion
.gitlab-ci.yml
Dockerfile.debian-bookworm-hugo
+3
-2
3 additions, 2 deletions
Dockerfile.debian-bookworm-hugo
Dockerfile.debian-trixie-hugo
+8
-0
8 additions, 0 deletions
Dockerfile.debian-trixie-hugo
with
21 additions
and
3 deletions
.gitlab-ci.yml
View file @
583701cd
...
...
@@ -29,3 +29,12 @@ build-bookworm:
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile.debian-bookworm-mkdocs --destination $CI_REGISTRY_IMAGE/bookworm-mkdocs:$CI_COMMIT_TAG
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile.debian-bookworm-hugo --destination $CI_REGISTRY_IMAGE/bookworm-hugo:$CI_COMMIT_TAG
build-trixie
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
script
:
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile.debian-trixie-hugo --destination $CI_REGISTRY_IMAGE/trixie-hugo:$CI_COMMIT_TAG
This diff is collapsed.
Click to expand it.
Dockerfile.debian-bookworm-hugo
View file @
583701cd
...
...
@@ -4,6 +4,7 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -qq update && \
apt-get -qq dist-upgrade && \
apt-get -qq install hugo && \
apt-get -qq install hugo
libwebp7 libwebp-dev
&& \
apt-get -qq clean
RUN ldconfig
\ No newline at end of file
RUN ldconfig -v
RUN hugo version
This diff is collapsed.
Click to expand it.
Dockerfile.debian-trixie-hugo
0 → 100644
View file @
583701cd
FROM debian:trixie
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -qq update && \
apt-get -qq dist-upgrade && \
apt-get -qq install hugo && \
apt-get -qq clean
This diff is collapsed.
Click to expand it.