Skip to content

Commit

Permalink
release: v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankachlock committed Aug 17, 2024
1 parent fb94266 commit f6f3e25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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 <br> dotnet-sdk:8.0.6 <br> node:20.15.0 <br> zwooc:1.0.1 |
| image version | included |
| ------------- | ------------------------------------------------------------------------------------------------------------------ |
| v0.1.0 | alpine:3.19.2 <br> dotnet-sdk:8.0.6 <br> node:20.15.0 <br> zwooc:1.0.1 |
| v0.2.0 | debian:bookworm-slim <br> mcr.microsoft.com/dotnet/sdk:8.0.401 <br> node:20.16.0 <br> yarn:1.22.22 <br>zwooc:1.1.0 |

0 comments on commit f6f3e25

Please sign in to comment.