3.6 KiB
Supported tags and respective Dockerfile links
latest,4,4.1,4.1.18(4.1.18/mono/Dockerfile)4.1.0.1(4.1.0.1/mono/Dockerfile)4.0,4.0.1,4.0.1.1(4.0.1.1/Dockerfile)4.0.0.4(4.0.0.4/Dockerfile)
Quick reference
-
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow -
Where to file issues:
https://github.com/fsprojects/docker-fsharp/issues -
Maintained by:
the F# Community -
Published image artifact details:
repo-info repo'srepos/fsharp/directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images PRs with labellibrary/fsharp
official-images repo'slibrary/fsharpfile (history) -
Source of this description:
docs repo'sfsharp/directory (history) -
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
What is F#?
F# (pronounced F sharp) is a strongly typed, multi-paradigm programming language that encompasses functional, imperative, and object-oriented programming techniques. F# is most often used as a cross-platform CLI language, but can also be used to generate JavaScript and GPU code.
How to use this image
Start your application inside this image
The most straightforward way to use this image is to use it both as the build and runtime environment. In your Dockerfile, you can write something similar to the following:
FROM fsharp
COPY . /app
RUN xbuild /app/myproject.sln
This will copy your application source code into the image and use xbuild to build it.
License
View the Apache 2.0 license for the software contained in this image.
