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 75e8e03
Showing
18 changed files
with
36 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,31 @@ | ||
From 95838ed3f6769a44357a3a503c57c9e3e2110227 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 Python for external renderering | ||
|
||
To be used for RestructuredText rendering using Sphinx to HTML. | ||
|
||
See: https://projects.blender.org/infrastructure/gitea-custom/src/branch/main/sphinx#deployment | ||
--- | ||
Dockerfile.rootless | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/Dockerfile.rootless b/Dockerfile.rootless | ||
index 736cea5d05..5d298d94c4 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 \ | ||
+ python3-dev \ | ||
+ && 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