This Docker image allows you to run the DocManageSystem frontend application in a containerized environment using Node.js on Alpine Linux.
Before running the Docker image, make sure you have the following prerequisites installed:
- Build the Docker image:
docker build -t frontend .
- Run the Docker container:
docker run \ --name frontend \ --restart=always \ -p 3000:3000 \ -d \ --env-file .env \ frontend