From 89552224118f3fcb4ae3f2df085a058a8a9ee811 Mon Sep 17 00:00:00 2001 From: impactaky <37619203+impactaky@users.noreply.github.com> Date: Sun, 18 Feb 2024 01:18:17 +0900 Subject: [PATCH] Update README (#14) * Update README * Remove 2.0.0 --------- Co-authored-by: impactaky --- README.md | 4 ++-- example/binutils.dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b99568..c120212 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Fast cross-compiled environment requiring no special recipes. Just use this as base image and build image with `--platform` option. ```Dockerfile -FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}:2.0.0 +FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH} ``` ### Run example @@ -34,7 +34,7 @@ This is the result on my local machine. Please write as following. ```Dockerfile -FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}-host:2.0.0 AS mimic-host +FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}-host AS mimic-host FROM ubuntu:22.04 COPY --from=mimic-host / /mimic-cross RUN /mimic-cross/mimic-cross.deno/setup.sh diff --git a/example/binutils.dockerfile b/example/binutils.dockerfile index 68725d1..23a1e29 100644 --- a/example/binutils.dockerfile +++ b/example/binutils.dockerfile @@ -17,7 +17,7 @@ # => [7/7] RUN make -j `nproc` 434.8s -FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}:2.0.0 +FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH} # => [2/7] RUN apt-get update && apt-get install -y --no-install-recommends wget ca-certificates binutils gcc make l 62.8s # => [3/7] RUN wget https://ftp.gnu.org/gnu/binutils/binutils-2.36.tar.gz 5.2s # => [4/7] RUN tar xf ./binutils-2.36.tar.gz 1.8s