From e943ccc77046fb6ceb2d9e9c8a917e4c58ee65c9 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 17 Feb 2022 20:14:28 +0100 Subject: [PATCH] Base image on official node image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f79775..1cd7092 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:stable-slim -RUN apt-get update && apt-get install -y nodejs python3 yarnpkg -RUN yarn add -g renovate +FROM node:16-buster-slim +RUN apt-get update && apt-get install -y python3 +RUN yarn global add renovate CMD renovate