An open API service indexing awesome lists of open source software.

https://github.com/tafthorne/fdev3

Dockerfile that sets up a basic Go development environment with openjfx added
https://github.com/tafthorne/fdev3

docker-image go golang openjfx

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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.
* https://golang.org/

## OpenJFX

OpenJFX is the open source home of JavaFX development. The goal of OpenJFX is
to build the next-generation Java client toolkit.
* http://openjdk.java.net/projects/openjfx/

## Contributing

Please see the notes in CONTRIBUTING.md.