Compare commits
2 Commits
d933f51db4
...
62d6180c55
Author | SHA1 | Date | |
---|---|---|---|
62d6180c55
|
|||
610769a386
|
14
Dockerfile
14
Dockerfile
@@ -1,12 +1,20 @@
|
|||||||
FROM jlesage/baseimage-gui:debian-10
|
FROM jlesage/baseimage-gui:ubuntu-24.04-v4.7.1
|
||||||
|
# Install app
|
||||||
RUN apt-get update && apt-get install -y openscad
|
RUN apt-get update && apt-get install -y openscad
|
||||||
|
|
||||||
RUN sed-patch 's/<application type="normal">/<application type="normal" title="OpenSCAD">/' /etc/xdg/openbox/rc.xml && \
|
# Setup dirs and files
|
||||||
echo "#!/bin/sh\nexport HOME=/home\nexec openscad" > /startapp.sh
|
RUN mkdir -p /home/openscad
|
||||||
|
RUN echo "#!/bin/sh\nexec openscad" > /startapp.sh
|
||||||
|
|
||||||
|
# Internal env vars
|
||||||
ENV APP_NAME="OpenSCAD"
|
ENV APP_NAME="OpenSCAD"
|
||||||
|
ENV HOME="/home/openscad"
|
||||||
|
|
||||||
|
# User
|
||||||
ENV USER_ID=0
|
ENV USER_ID=0
|
||||||
ENV GROUP_ID=0
|
ENV GROUP_ID=0
|
||||||
|
|
||||||
|
# App config
|
||||||
ENV DISPLAY_WIDTH=2340
|
ENV DISPLAY_WIDTH=2340
|
||||||
ENV DISPLAY_HEIGHT=1542
|
ENV DISPLAY_HEIGHT=1542
|
||||||
ENV KEEP_APP_RUNNING=1
|
ENV KEEP_APP_RUNNING=1
|
||||||
|
12
renovate.json5
Normal file
12
renovate.json5
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"dependencyDashboard": false,
|
||||||
|
"platformAutomerge": true,
|
||||||
|
"branchConcurrentLimit": 0,
|
||||||
|
"prConcurrentLimit": 0,
|
||||||
|
"prHourlyLimit": 0,
|
||||||
|
"rebaseWhen": "behind-base-branch",
|
||||||
|
"extends": [
|
||||||
|
"local>averagemarcus/renovate-config//source-urls"
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user