Skip to content

Commit 6a16dfd

Browse files
authored
fix: Specify platform for docker on mac (#414)
1 parent ff83380 commit 6a16dfd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile.gatekeeper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js as the base image
2-
FROM node:18.18.2
2+
FROM --platform=linux/amd64 node:18.18.2
33

44
# Set the working directory
55
WORKDIR /app

Dockerfile.hyperswarm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js as the base image
2-
FROM node:18.18.2
2+
FROM --platform=linux/amd64 node:18.18.2
33

44
# Set the working directory
55
WORKDIR /app

Dockerfile.ipfs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js as the base image
2-
FROM node:18.18.2
2+
FROM --platform=linux/amd64 node:18.18.2
33

44
# Set the working directory
55
WORKDIR /app

Dockerfile.keymaster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js as the base image
2-
FROM node:18.18.2
2+
FROM --platform=linux/amd64 node:18.18.2
33

44
# Set the working directory
55
WORKDIR /app

Dockerfile.satoshi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js as the base image
2-
FROM node:18.18.2
2+
FROM --platform=linux/amd64 node:18.18.2
33

44
# Set the working directory
55
WORKDIR /app

0 commit comments

Comments
 (0)