From f6f3e2509c835e250f2b7b0d64786b21559b222c Mon Sep 17 00:00:00 2001 From: fabiankachlock Date: Sat, 17 Aug 2024 17:18:20 +0200 Subject: [PATCH] release: v0.2.0 --- Dockerfile | 6 +++--- README.md | 13 +++++++------ 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 48614dc..feee14a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,17 +12,17 @@ ENV \ RUN apt-get update && apt-get install -y curl \ && rm -rf /var/lib/apt/lists/* \ && curl -L -o zwooc_linux_amd64.tar.gz "https://github.com/zwoo-hq/zwooc/releases/download/v$ZWOOC_VERSION/zwooc_linux_amd64.tar.gz" \ - && echo "8283dc552a547b301dd55bd70f6f2e1c41cef31024e60bcce9a14d45dca0ac08 zwooc_linux_amd64.tar.gz" | sha256sum -c - \ + && echo "eab54169930d6b2c06391c9fb68c19c46743a745685ed12cbfb18dca686eb6b4 zwooc_linux_amd64.tar.gz" | sha256sum -c - \ && tar -xzf zwooc_linux_amd64.tar.gz -C ./ \ && rm zwooc_linux_amd64.tar.gz \ && chmod +x zwooc \ && ./zwooc -h -FROM mcr.microsoft.com/dotnet/sdk:8.0.203-bookworm-slim-amd64 +FROM mcr.microsoft.com/dotnet/sdk:8.0.401-bookworm-slim-amd64 ENV \ # Node.js version - NODE_VERSION=20.15.1 \ + NODE_VERSION=20.16.0 \ # Yarn version YARN_VERSION=1.22.22 diff --git a/README.md b/README.md index 4736840..a55832b 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ This is the base image for the build stage of all zwoo docker images. It is composed of: -- `mcr.microsoft.com/dotnet/sdk:8.0-alpine3.19` (using `alpine:3.19` as base) -- `node:20-alpine3.19` -- `zwooc` v1.0.1 +- `mcr.microsoft.com/dotnet/sdk:8.0.401-bookworm-slim-amd64` (using `debian:bookworm-slim` as base) +- `node:20.16.0-bookworm-slim` +- `zwooc` v1.1.0 It should only be used for the build stage. The production image depend on the technology used. Common images are: @@ -15,6 +15,7 @@ It should only be used for the build stage. The production image depend on the t ## version compatibilities -| image version | included | -| ------------- | ---------------------------------------------------------------------- | -| v0.1.0 | alpine:3.19.2
dotnet-sdk:8.0.6
node:20.15.0
zwooc:1.0.1 | \ No newline at end of file +| image version | included | +| ------------- | ------------------------------------------------------------------------------------------------------------------ | +| v0.1.0 | alpine:3.19.2
dotnet-sdk:8.0.6
node:20.15.0
zwooc:1.0.1 | +| v0.2.0 | debian:bookworm-slim
mcr.microsoft.com/dotnet/sdk:8.0.401
node:20.16.0
yarn:1.22.22
zwooc:1.1.0 | \ No newline at end of file