From 6aca0efe3d989258ec452365ca9b6989be9b1f66 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Fri, 2 May 2025 08:52:51 +0200 Subject: [PATCH] Actualiser Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eef56c0..fc0a65a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM python:3.12-slim RUN apt-get update RUN apt-get install -y git -COPY bluesky_crossposter_latest.txt bluesky_crossposter_latest.txt +COPY bluesky_crossposter_latest.txt . RUN git clone https://github.com/Linus2punkt0/bluesky-crossposter.git \ && cd bluesky-crossposter \ - && git checkout $(cat bluesky_crossposter_latest.txt) \ + && git checkout $(cat ../bluesky_crossposter_latest.txt) \ && git reset --hard # RUN git clone https://github.com/coissac/bluesky-crossposter.git RUN rm -f bluesky-crossposter/Dockerfile \