From fc847b4fbf88cdf8389e13d94026ac564ce433a6 Mon Sep 17 00:00:00 2001 From: HAMZA ALSARSOUR Date: Thu, 19 Feb 2026 06:17:09 +0300 Subject: [PATCH] docker file added --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f0119cf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Use a stable Dart image as the base +FROM dart:stable + +# Set the working directory inside the container +WORKDIR /app + +# Copy your custom SDK/framework files from the repo to the container +COPY . . + +# Ensure your custom dart scripts are executable (if applicable) +# RUN chmod +x bin/your_custom_script.dart + +# This keeps the container running so the "Console" stays active +CMD ["tail", "-f", "/dev/null"] \ No newline at end of file