-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nihaldivyam
committed
Apr 1, 2024
1 parent
23bcd9b
commit ddbf40b
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,13 +70,13 @@ jobs: | |
echo ${{ steps.changed-files.outputs.all_changed_files}} | ||
echo ${{matrix.dockerfile}} | ||
# - name: Build & push container image | ||
# id: docker_build | ||
# if: ${{ contains(steps.changed-files.outputs.all_changed_files, matrix.dockerfile) }} | ||
# uses: docker/[email protected] | ||
# with: | ||
# context: . | ||
# file: ${{ matrix.dockerfile }} | ||
# labels: ${{ steps.meta.outputs.labels }} | ||
# tags: ${{ steps.meta.outputs.tags }} | ||
# push: true | ||
- name: Build & push container image | ||
id: docker_build | ||
if: ${{ contains(steps.changed-files.outputs.all_changed_files, './' + matrix.dockerfile) }} | ||
uses: docker/[email protected] | ||
with: | ||
context: . | ||
file: ${{ matrix.dockerfile }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
push: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,4 @@ RUN apt-get clean \ | |
RUN usermod -u 26 postgres | ||
|
||
# Set the user to run subsequent commands as | ||
USER 26 | ||
USER 26 |