Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo committed Jun 17, 2024
1 parent eb452fb commit 5a2d5af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion 8.2/alpine/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
# @license https://github.com/hyperf/hyperf/blob/master/LICENSE

ARG ALPINE_VERSION
ARG BUILD_PLATFORM

FROM alpine:$ALPINE_VERSION
FROM --platform=${BUILD_PLATFORM:-"linux/amd64"} alpine:$ALPINE_VERSION

LABEL maintainer="Hyperf Developers <[email protected]>" version="1.0" license="MIT"

Expand Down
3 changes: 2 additions & 1 deletion 8.3/alpine/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
# @license https://github.com/hyperf/hyperf/blob/master/LICENSE

ARG ALPINE_VERSION
ARG BUILD_PLATFORM

FROM alpine:$ALPINE_VERSION
FROM --platform=${BUILD_PLATFORM:-"linux/amd64"} alpine:$ALPINE_VERSION

LABEL maintainer="Hyperf Developers <[email protected]>" version="1.0" license="MIT"

Expand Down

0 comments on commit 5a2d5af

Please sign in to comment.