Skip to content

🐳 Collection of Dockerfiles for setting up ready-to-use development environments in Java, Python, and Node.js.

Notifications You must be signed in to change notification settings

Shatabdi2621/Dockerfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dockerfiles

This repository contains Dockerfiles for setting up development environments for various programming languages. Each Dockerfile is tailored to provide a consistent and efficient setup for developers. (Dockerfiles I use for development - GitHub)

Available Dockerfiles

  • Java-Dockerfile: Sets up a Java development environment.
  • NodeJS-Dcokerfile: Configures a Node.js environment for JavaScript development.
  • Python-Dockerfile: Prepares a Python environment suitable for various applications.

Getting Started

To build and run any of the Dockerfiles:

  1. Clone the repository:
   git clone https://github.com/Shatabdi2621/Dockerfiles.git
   cd Dockerfiles
  1. Build the Docker image: Replace <Dockerfile> with the desired Dockerfile name.
   docker build -f <Dockerfile> -t <image-name> .

For example, to build the Python Dockerfile:

   docker build -f Python-Dockerfile -t python-dev-env .
  1. Run the Docker container:
   docker run -it <image-name>

Continuing the example:

   docker run -it python-dev-env

About

🐳 Collection of Dockerfiles for setting up ready-to-use development environments in Java, Python, and Node.js.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published