Created
October 2, 2015 11:31
-
-
Save Dzoukr/380c6a3382650fecb11b to your computer and use it in GitHub Desktop.
F# on Mono docker file
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 ubuntu:latest | |
MAINTAINER Roman Provaznik <[email protected]> | |
ENV LANG C.UTF-8 | |
RUN apt-get update && apt-get -y -q install mono-complete fsharp | |
ADD . app/ | |
EXPOSE 8083 | |
ENTRYPOINT ["mono", "/app/SuaveIO.exe"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment