diff --git a/README.md b/README.md index 6205353..7ce9b91 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ Based on `debian:bullseye-slim`. Get the correct `Node version` by running: ```bash -docker run --rm ghcr.io/chneau/meteor:3.0-rc.4 meteor node --version -# v20.12.2 +docker run --rm ghcr.io/chneau/meteor:3.0 meteor node --version +# v20.15.1 ``` Add a `Dockerfile` to your project: ```Dockerfile -FROM ghcr.io/chneau/meteor:3.0-rc.2 AS builder +FROM ghcr.io/chneau/meteor:3.0 AS builder WORKDIR /app COPY --chown=meteor:meteor ./package*.json . RUN meteor npm install