forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor rename script and add patch
- Loading branch information
1 parent
b9a7301
commit b37a102
Showing
18 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
From 8523a340604c296e42fb46496885ff522dedae5d Mon Sep 17 00:00:00 2001 | ||
From: Bart van der Braak <[email protected]> | ||
Date: Wed, 4 Dec 2024 15:29:10 +0100 | ||
Subject: [PATCH] BLENDER: Add Pandoc as external renderer | ||
|
||
To be used for RestructuredText rendering. | ||
--- | ||
Dockerfile.rootless | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/Dockerfile.rootless b/Dockerfile.rootless | ||
index 736cea5d05..777666542e 100644 | ||
--- a/Dockerfile.rootless | ||
+++ b/Dockerfile.rootless | ||
@@ -54,6 +54,11 @@ RUN apk --no-cache add \ | ||
gnupg \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
+# External renderers | ||
+RUN apk --no-cache add \ | ||
+ pandoc \ | ||
+ && rm -rf /var/cache/apk/* | ||
+ | ||
RUN addgroup \ | ||
-S -g 1000 \ | ||
git && \ | ||
-- | ||
2.45.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters