From 5a39ced8e0c42927df1310976f3a3747d73d0c50 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Tue, 22 Mar 2022 22:09:07 -0400 Subject: [PATCH] Bump Alpine to 3.15.1, add support for dependabot --- .github/dependabot.yml | 12 ++++++++++++ Dockerfile | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..38957f6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + # Maintain Docker images updated + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 91358aa..af32006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -FROM alpine:3.15 +FROM alpine:3.15.1 LABEL maintainer="team@appwrite.io" RUN echo 'hosts: files dns' >> /etc/nsswitch.conf -RUN apk add --no-cache \ +RUN apk -U upgrade && \ + apk add --no-cache \ tzdata \ bash \ ca-certificates && \