Created
April 14, 2015 17:32
-
-
Save FaisalAbid/b8c85066e22e9a3bee63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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