From 268dec50fdc2140665a16b2e446c13dfba67d284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C4=83t=C4=83lin?= Date: Wed, 10 Aug 2022 19:33:57 +0200 Subject: [PATCH] ci: debug --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf72564..a326c08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine +FROM python:3.10-alpine AS base RUN apk add --no-cache \ curl \ gcc \ @@ -25,4 +25,4 @@ COPY poetry.lock /app COPY pyproject.toml /app WORKDIR /app RUN poetry config virtualenvs.create false \ - && poetry install + && poetry install --only base