TafThorne / fdev3

Dockerfile that sets up a basic Go development environment with openjfx added

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fdev3

Dockerfile that sets up a basic Go development environment with OpenJFX and a number of other tools added.

The Docker Image is listed on Docker Hub: https://hub.docker.com/r/tafthorne/fdev3/

To pull the image:

docker pull tafthorne/fdev3

An overview of the included libraries is given below.

Using This Image

The expected way to use this image is to navigate to the working directory where your source code resides and start an interactive session.

docker run -ti --volume="${PWD}:/shared" -w "/shared" tafthorne/fdev3

Then within the running container you can call make or gcc as if it were a native tool. The libraries added to this image will be in the global include path.

Go

The Go Programming Language (golang) is an open source programming language that makes it easy to build simple, reliable, and efficient software.

OpenJFX

OpenJFX is the open source home of JavaFX development. The goal of OpenJFX is to build the next-generation Java client toolkit.

Contributing

Please see the notes in CONTRIBUTING.md.

About

Dockerfile that sets up a basic Go development environment with openjfx added

License:GNU General Public License v3.0


Languages

Language:Dockerfile 100.0%