Skip to content

Commit

Permalink
chore: restructure bq2bq dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
deryrahman committed Sep 23, 2024
1 parent 0bfa394 commit dfccc82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./bq2bq.Dockerfile # Path to the Dockerfile
context: ./bq2bq
platforms: linux/amd64 # Specify the target platforms
push: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion bq2bq.Dockerfile → bq2bq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.8-alpine

WORKDIR /opt/bumblebee

COPY bq2bq .
COPY . .
RUN ["pip", "install", "-r", "requirements.txt"]

ENTRYPOINT [ "python3", "/opt/bumblebee/main.py"]

0 comments on commit dfccc82

Please sign in to comment.