Skip to content

Instantly share code, notes, and snippets.

@Dzoukr
Created October 2, 2015 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dzoukr/380c6a3382650fecb11b to your computer and use it in GitHub Desktop.
Save Dzoukr/380c6a3382650fecb11b to your computer and use it in GitHub Desktop.
F# on Mono docker file
FROM ubuntu:latest
MAINTAINER Roman Provaznik <dzoukr@dzoukr.cz>
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