Skip to content

Commit

Permalink
Workspace setup script created
Browse files Browse the repository at this point in the history
  • Loading branch information
lim185 committed Sep 30, 2025
1 parent 670002b commit 108d156
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions setup/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

source ../.env

thing=$(docker images | grep "geonosis")
echo $thing

if [ -n "$thing" ]; then
echo "Docker image \"geonosis\" already exists."
else
echo "Building Docker image \"geonosis\"..."
docker build -t geonosis .
fi

mkdir -p ${DATA_PATH}/matfiles
mkdir -p ${DATA_PATH}/model_weights
mkdir -p ${DATA_PATH}/figures
File renamed without changes.

0 comments on commit 108d156

Please sign in to comment.