Skip to content

Commit

Permalink
Merge pull request #167 from Aggregate-Intellect/fix/build-error1
Browse files Browse the repository at this point in the history
build error fix
  • Loading branch information
saminegash authored Sep 14, 2023
2 parents d830a49 + 353671b commit 7e93ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildspec.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ phases:
- echo Build started on `date`
- echo Building the Docker image...
- docker login --username $USERNAME --password $PASSWORD
- docker build --cache-from $REPOSITORY_URI:latest -t $REPOSITORY_URI:latest ./apps/slackbot
- docker build --cache-from $REPOSITORY_URI:latest -t $REPOSITORY_URI:latest ./src/apps/slackbot
- docker tag $REPOSITORY_URI:latest $REPOSITORY_URI:$IMAGE_TAG

post_build:
Expand Down
2 changes: 1 addition & 1 deletion src/apps/slackapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ EXPOSE 80


# Set the working directory in the container
WORKDIR /app/apps/slackapp
WORKDIR /app/src/apps/slackapp
# Run the Flask app
CMD ["poetry", "run", "python", "-m", "slackapp.bolt_app"]

0 comments on commit 7e93ac0

Please sign in to comment.