File size: 159 Bytes
f198f11
29fe467
d53f561
29fe467
f198f11
 
 
1
2
3
4
5
6
7
FROM dart:2.19.1
COPY pubspec.yaml pubspec.lock ./
RUN dart pub get 
COPY . ./
RUN  dart compile exe bin/cli.dart
RUN chmod +x bin/cli
ENTRYPOINT [ "bin/cli" ]