Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #19 from kubefirst/amd64
Browse files Browse the repository at this point in the history
support amd64
  • Loading branch information
johndietz authored Nov 4, 2022
2 parents 5402ef4 + 138ad55 commit cb25155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM node:16 AS build
FROM --platform=linux/amd64 node:16 AS build

WORKDIR /opt/app

Expand All @@ -18,7 +18,7 @@ RUN yarn build
COPY env.sh .env ./

# production
FROM nginx:1.23-alpine AS production
FROM --platform=linux/amd64 nginx:1.23-alpine AS production

RUN apk add -u bash

Expand Down

0 comments on commit cb25155

Please sign in to comment.