Skip to content

Commit

Permalink
fix: Specify platform for docker on mac (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
macterra authored Nov 14, 2024
1 parent ff83380 commit 6a16dfd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.gatekeeper
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js as the base image
FROM node:18.18.2
FROM --platform=linux/amd64 node:18.18.2

# Set the working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.hyperswarm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js as the base image
FROM node:18.18.2
FROM --platform=linux/amd64 node:18.18.2

# Set the working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ipfs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js as the base image
FROM node:18.18.2
FROM --platform=linux/amd64 node:18.18.2

# Set the working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.keymaster
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js as the base image
FROM node:18.18.2
FROM --platform=linux/amd64 node:18.18.2

# Set the working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.satoshi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Node.js as the base image
FROM node:18.18.2
FROM --platform=linux/amd64 node:18.18.2

# Set the working directory
WORKDIR /app
Expand Down

0 comments on commit 6a16dfd

Please sign in to comment.