Skip to content

Commit

Permalink
Merge pull request #36 from text-adi/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
text-adi committed Nov 3, 2023
2 parents 86ae014 + bb1b453 commit 9cc8510
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -29,7 +29,7 @@ jobs:
echo "Tag: ${{ github.ref_name }}"
- name: Build and Push Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ LABEL repository="https://github.com/text-adi/build-lang-action"
LABEL homepage="https://github.com/text-adi"
LABEL maintainer="text-adi <[email protected]>"

WORKDIR /app
WORKDIR /code

COPY script script
COPY script /script

COPY --from=builder /install /usr/local/

CMD ["python","/app/script/main.py"]
CMD ["python","/script/main.py"]

0 comments on commit 9cc8510

Please sign in to comment.