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
- Host: GitHub
- URL: https://github.com/tafthorne/fdev3
- Owner: TafThorne
- License: gpl-3.0
- Created: 2019-03-22T11:24:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T15:38:52.000Z (over 7 years ago)
- Last Synced: 2025-03-14T06:12:56.267Z (over 1 year ago)
- Topics: docker-image, go, golang, openjfx
- Language: Dockerfile
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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.