Skip to content

Instantly share code, notes, and snippets.

@FaisalAbid
Created April 14, 2015 17:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FaisalAbid/b8c85066e22e9a3bee63 to your computer and use it in GitHub Desktop.
Save FaisalAbid/b8c85066e22e9a3bee63 to your computer and use it in GitHub Desktop.
FROM google/dart
WORKDIR /app
ADD pubspec.* /app/
RUN pub get
ADD . /app
RUN pub get --offline
CMD []
EXPOSE 3030
ENTRYPOINT ["/usr/bin/dart", "bin/server.dart"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment