🏡 index : container_build.git

import express from "express";

import dotenv from 'dotenv';

const app = express();
dotenv.config();
app.get("/", (req, res) => {
  const output = `
    <h1>Do-nothing JS app</h1>

    <h3>SHELL: ${process.env.SHELL}</h3>
    <h3>ENV_VAR_A: ${process.env.ENV_VAR_A}</h3>
    <h3>POD_NAME: ${process.env.POD_NAME}</h3>
  `;

  res.send(output);
});


app.listen(8000);