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)
- 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.
To build and run any of the Dockerfiles:
- Clone the repository:
git clone https://github.com/Shatabdi2621/Dockerfiles.git
cd Dockerfiles- 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 .- Run the Docker container:
docker run -it <image-name>Continuing the example:
docker run -it python-dev-env