diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 270acf6..03dc85f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,7 @@ { "build": { - "context": "../processingEnv", - "dockerfile": "../processingEnv/Dockerfile", + "context": "../processing_env", + "dockerfile": "../processing_env/Dockerfile", "target": "dev" }, "customizations": { diff --git a/.github/workflows/build-and-push-dev.yml b/.github/workflows/build-and-push-dev.yml index c080b6a..3224839 100644 --- a/.github/workflows/build-and-push-dev.yml +++ b/.github/workflows/build-and-push-dev.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: paths: - - 'processingEnv/**' + - 'processing_env/**' jobs: build-and-push: @@ -26,7 +26,7 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v2 with: - context: ./processingEnv + context: ./processing_env push: true tags: ghcr.io/${{ github.repository }}/geo-processing-env:${{ github.sha }} platforms: linux/amd64,linux/arm64 diff --git a/processingEnv/Dockerfile b/processing_env/Dockerfile similarity index 100% rename from processingEnv/Dockerfile rename to processing_env/Dockerfile diff --git a/processingEnv/dev/requirements.dev.txt b/processing_env/dev/requirements.dev.txt similarity index 100% rename from processingEnv/dev/requirements.dev.txt rename to processing_env/dev/requirements.dev.txt diff --git a/processingEnv/entrypoint-batch.sh b/processing_env/entrypoint-batch.sh similarity index 100% rename from processingEnv/entrypoint-batch.sh rename to processing_env/entrypoint-batch.sh diff --git a/processingEnv/requirements.txt b/processing_env/requirements.txt similarity index 100% rename from processingEnv/requirements.txt rename to processing_env/requirements.txt