diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 2c8ba9b..2c62997 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS base +FROM --platform=linux/amd64 node:18-alpine AS base # The web Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker. # Make sure you update this Dockerfile, the Dockerfile in the web workspace and copy that over to Dockerfile in the docs. diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 0d013ab..66e566f 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS base +FROM --platform=linux/amd64 node:18-alpine AS base # This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker. # Make sure you update both files! diff --git a/apps/worker/Dockerfile b/apps/worker/Dockerfile index caba60a..ac7e164 100644 --- a/apps/worker/Dockerfile +++ b/apps/worker/Dockerfile @@ -1,4 +1,4 @@ -FROM public.ecr.aws/lambda/nodejs:18 AS base +FROM --platform=linux/amd64 public.ecr.aws/lambda/nodejs:18 AS base FROM base AS builder # Set working directory