Add basic config with docker and git

This commit is contained in:
2021-11-18 11:57:45 +01:00
parent b3a860dc5b
commit b2c14ae9b9
3 changed files with 22 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
**/__pycache__
+6
View File
@@ -0,0 +1,6 @@
### PyCharm ###
.idea/
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
+15
View File
@@ -0,0 +1,15 @@
FROM alpine
ARG b3d_vs_major=2.90
ARG b3d_vs_minor=0
LABEL Author="stilobique"
LABEL Title="Blender Docker Test"
ENV B3D_ADDON_PATH "/bin/blender-${b3d_vs_major}.${b3d_vs_minor}-linux-x64/${b3d_vs_major}/scripts/addons"
# Install Blender
RUN wget https://download.blender.org/release/Blender${b3d_vs_major}/blender-${b3d_vs_major}.${b3d_vs_minor}-linux-x64.tar.xz \
&& tar -xf blender-${b3d_vs_major}.${b3d_vs_minor}-linux-x64.tar.xz -C /bin \
&& rm -rf blender-${b3d_vs_major}.${b3d_vs_minor}-linux-x64.tar.xz \
&& rm -rf blender-${b3d_vs_major}.${b3d_vs_minor}-linux-x64