Skip to content

Commit

Permalink
patch action
Browse files Browse the repository at this point in the history
  • Loading branch information
0xEthamin committed Jun 13, 2024
1 parent e087bcc commit bc0e6c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: utils/
context: .
push: true
tags: ghcr.io/garage-isep/garagediscordbot:latest
file: utils/Dockerfile
4 changes: 2 additions & 2 deletions utils/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM python:3.12-slim-bookworm

WORKDIR /bot

COPY ./requirements.txt requirements.txt
COPY /utils/requirements.txt requirements.txt
RUN pip3 install -r requirements.txt

COPY ../src/ .
COPY /src/ .

CMD ["python3", "GarageBot.py"]

0 comments on commit bc0e6c1

Please sign in to comment.