You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The primary objective of this issue is to create a Dockerfile for the UIPA.org portal. The Dockerfile will enable the containerization of the application, providing a consistent and portable environment for deployment across different systems.
Background
Docker is a containerization platform that allows applications to be packaged with their dependencies into a standardized unit called a container. Creating a Dockerfile for UIPA.org facilitates ease of deployment, scalability, and ensures consistency in various environments.
Walkthrough
Currently, the process of standing up UIPA (after cloning this repo) includes the following three steps:
source froide-env/bin/activate # to activate the python virtualenv
python3 manage.py runserver
docker-compose up
vite dev
After running the following commands (in separate terminals), http://localhost:8000/ serves the site.
Success Criteria
Docker is used to build and serve the application with one command.
The text was updated successfully, but these errors were encountered:
Objective
The primary objective of this issue is to create a Dockerfile for the UIPA.org portal. The Dockerfile will enable the containerization of the application, providing a consistent and portable environment for deployment across different systems.
Background
Docker is a containerization platform that allows applications to be packaged with their dependencies into a standardized unit called a container. Creating a Dockerfile for UIPA.org facilitates ease of deployment, scalability, and ensures consistency in various environments.
Walkthrough
Currently, the process of standing up UIPA (after cloning this repo) includes the following three steps:
docker-compose up
vite dev
After running the following commands (in separate terminals), http://localhost:8000/ serves the site.
Success Criteria
Docker is used to build and serve the application with one command.
The text was updated successfully, but these errors were encountered: