Skip to content
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 .docker/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN echo "PubkeyAcceptedKeyTypes +ssh-rsa" >> /etc/ssh/ssh_config
# package.json contains Node-RED NPM module and node dependencies
COPY package.json .
COPY flows.json /data
COPY scripts/entrypoint.sh .
COPY .docker/scripts/entrypoint.sh .

#### Stage BUILD #######################################################################################################
FROM base AS build
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ jobs:

cat $GITHUB_OUTPUT

cat $GITHUB_OUTPUT

# echo "::set-output name=tags::$TAGS"
# echo "::set-output name=push::$PUSH"
# echo "::set-output name=version::$(echo $GITHUB_REF | awk -F '/' '{ print $3}')"
Expand Down Expand Up @@ -210,15 +208,13 @@ jobs:

cat $GITHUB_OUTPUT

cat $GITHUB_OUTPUT

- name: Build and push
id: build-push
uses: docker/build-push-action@v2
continue-on-error: true
with:
context: .
platforms: linux/amd64, linux/arm64, linux/s390x, linux/arm/v7, linux/arm/v6
platforms: linux/amd64, linux/arm64, linux/arm/v7
file: .docker/Dockerfile.debian
push: ${{ steps.nrVersion.outputs.push }}
build-args: |
Expand Down