Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- cron: '45 4 * * *'

env:
crystal_version: 1.17.0
crystal_version: 1.17.1
shards_version: 0.19.1
gc_version: 8.2.8

Expand Down
4 changes: 2 additions & 2 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG alpine_version=latest
ARG alpine_version=edge

FROM alpine:$alpine_version AS builder
ARG llvm_version=20
Expand Down Expand Up @@ -43,7 +43,7 @@ RUN tar zxf shards.tar.gz && \
# start from a clean image
FROM alpine:$alpine_version
# add dependencies commonly required for building crystal applications
RUN apk add --update --no-cache musl-dev gcc pcre2-dev openssl-dev openssl-libs-static libxml2-dev zlib-dev zlib-static git make yaml-dev libxml2-static gmp-dev xz-static yaml-static pcre2-static
RUN apk add --update --no-cache musl-dev gcc pcre2-dev libressl-dev libressl-static libxml2-dev zlib-dev zlib-static git make yaml-dev libxml2-static gmp-dev xz-static yaml-static pcre2-static
# copy the binaries + stdlib + libgc from the build stage
COPY --from=builder /usr/share/man/man1/crystal.1.gz /usr/share/man/man1/
COPY --from=builder /usr/share/man/man1/shards.1.gz /usr/share/man/man1/
Expand Down
Loading