Skip to content
Merged
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
9 changes: 6 additions & 3 deletions 3.2/22/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
FROM ruby:3.2-alpine
LABEL maintainer "Tim Brust <github@timbrust.de>"

Check warning on line 2 in 3.2/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.2, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ARG REFRESHED_AT
ENV REFRESHED_AT $REFRESHED_AT

Check warning on line 5 in 3.2/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.2, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apk -U upgrade \
RUN echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/community >> /etc/apk/repositories \
&& echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/main >> /etc/apk/repositories \
&& apk -U upgrade \
&& apk add --no-cache \
nodejs \
npm \
ada-libs@old-stable \
nodejs@old-stable \
npm@old-stable \
yarn
9 changes: 6 additions & 3 deletions 3.3/22/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
FROM ruby:3.3-alpine
LABEL maintainer "Tim Brust <github@timbrust.de>"

Check warning on line 2 in 3.3/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.3, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ARG REFRESHED_AT
ENV REFRESHED_AT $REFRESHED_AT

Check warning on line 5 in 3.3/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.3, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apk -U upgrade \
RUN echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/community >> /etc/apk/repositories \
&& echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/main >> /etc/apk/repositories \
&& apk -U upgrade \
&& apk add --no-cache \
nodejs \
npm \
ada-libs@old-stable \
nodejs@old-stable \
npm@old-stable \
yarn
9 changes: 6 additions & 3 deletions 3.4/22/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
FROM ruby:3.4-alpine
LABEL maintainer "Tim Brust <github@timbrust.de>"

Check warning on line 2 in 3.4/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.4, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ARG REFRESHED_AT
ENV REFRESHED_AT $REFRESHED_AT

Check warning on line 5 in 3.4/22/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / buildx (3.4, 22, alpine)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apk -U upgrade \
RUN echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/community >> /etc/apk/repositories \
&& echo @old-stable https://dl-cdn.alpinelinux.org/alpine/v3.22/main >> /etc/apk/repositories \
&& apk -U upgrade \
&& apk add --no-cache \
nodejs \
npm \
ada-libs@old-stable \
nodejs@old-stable \
npm@old-stable \
yarn
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Tim Brust
Copyright (c) 2026 Tim Brust

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading