Change Dockerfile to use latest dart image

I generated an application with `angel init`

When running the application in a docker container, I get the error.
`file:///root/.pub-cache/hosted/pub.dartlang.org/angel_configuration-2.1.0/lib/angel_configuration.dart:62:1: Error: 'Future' expects 0 type arguments.`
This is due to the fact that *angel_configuration.dart* does not import 'dart:async'.
This works when using the latest dart version.
[see](https://github.com/dart-lang/sdk/issues/26162)
[see](https://github.com/dart-lang/sdk/issues/34384)
[see](https://github.com/dart-lang/sdk/issues/34237)
This commit is contained in:
fredtma 2019-09-26 09:09:01 +02:00 committed by GitHub
parent 4aec4c5cec
commit 8d2f0e9d02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
FROM google/dart:2.0
FROM google/dart:latest
COPY ./ ./
@ -11,4 +11,4 @@ RUN pub get
# Set environment, start server
ENV ANGEL_ENV=production
EXPOSE 3000
CMD dart bin/prod.dart
CMD dart bin/prod.dart