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