From d61157e551192f7991fab4cf6025825b2462ee6e Mon Sep 17 00:00:00 2001 From: Stefan <42220813+Stefanuk12@users.noreply.github.com> Date: Mon, 10 Jul 2023 09:25:35 +0100 Subject: [PATCH] Lets try alpine to see if that works too --- images/ptero-debian-surrealdb/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/images/ptero-debian-surrealdb/Dockerfile b/images/ptero-debian-surrealdb/Dockerfile index 975a364..6af33b8 100644 --- a/images/ptero-debian-surrealdb/Dockerfile +++ b/images/ptero-debian-surrealdb/Dockerfile @@ -1,11 +1,11 @@ -FROM ghcr.io/parkervcp/yolks:debian +FROM ghcr.io/parkervcp/alpine:debian LABEL author="Stefanuk12" maintainer="stefanukpadd@gmail.com" ## Install dependencies USER root -RUN apt update \ - && apt upgrade -y \ - && apt install curl -y +RUN apk update \ + && apk upgrade -y \ + && apt add curl -y ## Installing SurrealDB RUN curl -sSf https://install.surrealdb.com | sh