Skip to content

Commit

Permalink
Fix copy operation
Browse files Browse the repository at this point in the history
  • Loading branch information
santam85 committed Jan 27, 2023
1 parent 9faf24c commit c14cbe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "addon-warema-wms",
"scripts": {
"start": "node warema-bridge/srv/index.js",
"build": "docker buildx build --tag santam/wms-mqtt:latest -f standalone.Dockerfile --push ."
"build": "docker buildx build --tag santam/wms-mqtt:latest --platform linux/amd64,linux/arm64,linux/arm/v7 -f standalone.Dockerfile ."
},
"dependencies": {
"@serialport/parser-delimiter": "^10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion standalone.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ FROM node:18-alpine as app
COPY --from=builder app/node_modules ./node_modules

# Copy root filesystem
COPY warema-bridge/srv/* .
COPY warema-bridge/srv .

CMD ["node", "index.js"]

0 comments on commit c14cbe1

Please sign in to comment.