From 9343c2eb69c9e180be639921e7520df836a25cd3 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Sun, 29 Dec 2024 01:02:30 +0100 Subject: [PATCH] Actualiser Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0ba45c..491747a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # Use latest alpine-derived Python base image FROM python:3.12 +RUN apk update RUN apk add git RUN git clone https://github.com/Linus2punkt0/bluesky-crossposter.git RUN rm -f bluesky-crossposter/Dockerfile \ @@ -11,9 +12,6 @@ RUN rm -rf bluesky-crossposter RUN pip install --no-cache-dir -r requirements.txt -# Copy source to app directory -COPY . . - # Make sure run script is executable RUN chmod +rxxx ./run.sh