docker file added
This commit is contained in:
parent
8ad9065059
commit
fc847b4fbf
1 changed files with 14 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
Loading…
Reference in a new issue