Created
August 28, 2017 16:59
-
-
Save lorenzo/087d73d38f8fe4088e60dd8e88ed0122 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 fpco/stack-build:latest as haskell-build | |
ADD . | |
RUN stack install | |
FROM ubuntu:16 | |
COPY --from=haskell-build /path/to/install/folder/my-binary /usr/local/bin | |
CMD ["my-binary"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment