Skip to content

Commit d7d9adf

Browse files
Bump for Alpine 3.14 and new packages
1 parent 8752929 commit d7d9adf

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

.github/workflows/CRON.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check for updates
1+
name: Weekly build
22

33
on:
44
schedule:
@@ -8,7 +8,6 @@ on:
88
jobs:
99
build_and_push:
1010
name: Build and push images
11-
needs: lint
1211
runs-on: ubuntu-latest
1312
steps:
1413
- name: Checkout repository

Dockerfile

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use a clean tiny image to store artifacts in
2-
FROM alpine:3.11
2+
FROM alpine:3.14
33

44
# Labels for http://label-schema.org/rc1/#build-time-labels
55
# And for https://github.com/opencontainers/image-spec/blob/master/annotations.md
@@ -46,17 +46,15 @@ LABEL \
4646
COPY entrypoint.sh /
4747

4848
# Install needed packages
49-
# hadolint ignore=DL3017,DL3018
5049
RUN set -eux \
51-
&& chmod +x /entrypoint.sh \
52-
&& apk update --no-cache \
53-
&& apk upgrade --no-cache \
54-
&& apk add --no-cache bash \
55-
&& apk add --no-cache git \
56-
&& rm -rf /var/cache/* \
57-
&& rm -rf /root/.cache/*
50+
chmod +x /entrypoint.sh ;\
51+
apk update --no-cache ;\
52+
apk add --no-cache \
53+
bash~=5.1.4 \
54+
git~=2.32.0 ;\
55+
rm -rf /var/cache/* ;\
56+
rm -rf /root/.cache/*
5857

5958
# Finish up
6059
WORKDIR /github/workspace
61-
# hadolint ignore=DL3025
62-
ENTRYPOINT /entrypoint.sh
60+
ENTRYPOINT ["/entrypoint.sh"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
phony: help
33

44
# Release tag for the action
5-
VERSION := v0.2
5+
VERSION := v0.3
66

77
# GitHub Actions bogus variables
88
GITHUB_REF ?= refs/heads/null

0 commit comments

Comments
 (0)