Skip to main content

Test Env (Python)

This document describes the test-env service.

Overview

This service provides a simple Python environment for testing and debugging. It's based on the python:3.11 Docker image and includes the numpy library.

Key Functionalities:

  • Provides a running container with a Python environment.
  • Can be used for interactive debugging and testing.

Technology Stack:

  • Docker: For containerization.
  • Python: The runtime environment.
  • NumPy: A library for numerical operations.

How to Use

To use the test-env service, build and run the Docker image:

docker build -t test-env .
docker run -it test-env /bin/bash

This will give you a shell inside the container, where you can run Python and use the numpy library.