redstone-mongodb.dockerfile 256 B

123456789101112
  1. FROM google/dart:1.24
  2. WORKDIR /redstone
  3. COPY fortunes.mustache fortunes.mustache
  4. COPY mongodb.yaml mongodb.yaml
  5. COPY postgresql.yaml postgresql.yaml
  6. COPY pubspec.yaml pubspec.yaml
  7. COPY server.dart server.dart
  8. RUN pub upgrade
  9. CMD ["dart", "server.dart"]