From 80b4ebd859ea9c333c91226ac42d0a0630d23731 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Wed, 26 Oct 2022 18:59:36 +0200 Subject: [PATCH] Fix image --- docker/build.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build.dockerfile b/docker/build.dockerfile index 93dbf34..cbb45ee 100644 --- a/docker/build.dockerfile +++ b/docker/build.dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/kurbezz/base_docker_images:3.11-postgres-asyncpg-poetry-buildtime as build-image +FROM ghcr.io/flibusta-apps/base_docker_images:3.11-postgres-asyncpg-poetry-buildtime as build-image WORKDIR /root/poetry @@ -9,7 +9,7 @@ RUN poetry export --without-hashes > requirements.txt \ && pip install -r requirements.txt --no-cache-dir -FROM ghcr.io/kurbezz/base_docker_images:3.11-postgres-runtime as runtime-image +FROM ghcr.io/flibusta-apps/base_docker_images:3.11-postgres-runtime as runtime-image WORKDIR /app