Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build error fix #167

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"]