docker file added

This commit is contained in:
HAMZA ALSARSOUR 2026-02-19 06:17:09 +03:00
parent 8ad9065059
commit fc847b4fbf

14
Dockerfile Normal file
View file

@ -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"]