Skip to content

Commit

Permalink
Korjattu kontin buildia
Browse files Browse the repository at this point in the history
  • Loading branch information
augustk committed Oct 4, 2024
1 parent 4a20b40 commit 9610844
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-dbt-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
IMAGE_TAG: ga-${{ github.run_number }}
run: |
cd dbt-container
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG ../ --file Dockerfile
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
6 changes: 3 additions & 3 deletions dbt-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ RUN apk upgrade --no-cache
RUN apk --no-cache add bash

WORKDIR /root/
COPY ./run.sh ./
COPY ./install.sh ./
ADD ../dbt ./dbt
COPY ./dbt-container/run.sh ./
COPY ./dbt-container/install.sh ./
ADD ./dbt ./dbt
RUN \
bash install.sh && \
rm install.sh
Expand Down
2 changes: 1 addition & 1 deletion dbt-container/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
cd "${0%/*}"
docker build --progress=plain -t ovara-dbt-runner .
docker build --progress=plain -t ovara-dbt-runner ../ --file Dockerfile
cd -

0 comments on commit 9610844

Please sign in to comment.