From 78197658916d981aede114a72fb3b7d7ead50aab Mon Sep 17 00:00:00 2001 From: Fusion Date: Thu, 14 May 2026 06:38:47 +0200 Subject: [PATCH] =?UTF-8?q?feat(FN-002):=20complete=20Step=203=20=E2=80=94?= =?UTF-8?q?=20FastAPI=20Backend=20App=20Skeleton?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fusion-Task-Id: FN-002 Fusion-Task-Lineage: 49cb7077-d805-4d39-9a27-ae50744f2839 --- apps/api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 717540f..5caba5e 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHONUNBUFFERED=1 COPY app/ ./app/ COPY pyproject.toml ./ -RUN pip install --no-cache-dir -e ".[dev]" +RUN pip install --no-cache-dir -e "." EXPOSE 8000