Updated Home (markdown)

Godwin Ani 2025-03-05 16:13:10 -05:00
parent 05de73abaf
commit 47e8d28ef1

@ -12,10 +12,8 @@ Note that EukPhylo used to go by the name of "PhyloToL," hence some residual ins
The [docker file](https://github.com/Katzlab/EukPhylo/blob/Docker/PTL2/Dockerfile) can be executed with: The [docker file](https://github.com/Katzlab/EukPhylo/blob/Docker/PTL2/Dockerfile) can be executed with:
```bash ```bash
cd EukPhylo
# Build the container # Build the container
docker build -t Dockerfile . --tag MyEuk:1 docker build -f Dockerfile.txt . --tag eukphylo:1
# Get the container IMAGE_ID # Get the container IMAGE_ID
docker image list docker image list
@ -25,7 +23,7 @@ docker run -it \
--mount type=bind,src=$(pwd)/databases,dst=/Databases \ --mount type=bind,src=$(pwd)/databases,dst=/Databases \
--mount type=bind,src=$(pwd)/input_data,dst=/Input_data \ --mount type=bind,src=$(pwd)/input_data,dst=/Input_data \
--mount type=bind,src=$(pwd)/output_data,dst=/Output_data \ --mount type=bind,src=$(pwd)/output_data,dst=/Output_data \
{IMAGE_ID} eukphylo
``` ```
After development, GitHub CICD workflows can be added to automatically build and release the dockerfile for the end user. After development, GitHub CICD workflows can be added to automatically build and release the dockerfile for the end user.