From 3cce7bde11e55f510a3dc364a973676ae4736374 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 22 Mar 2025 08:26:06 +0000 Subject: [PATCH] Make /startapp.sh execuytable Signed-off-by: Marcus Noble --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0eaa87a..01e2d7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ FROM jlesage/baseimage-gui:ubuntu-24.04-v4.7.1 # Setup dirs and files RUN mkdir -p /home/openscad RUN echo "#!/bin/sh\nexec openscad" > /startapp.sh + RUN chmod +x /startapp.sh # Internal env vars ENV APP_NAME="OpenSCAD"