From de2ae691d485bd8c249818f9f2620882e91de510 Mon Sep 17 00:00:00 2001 From: grillazz Date: Fri, 17 Jul 2026 14:22:44 +0200 Subject: [PATCH] feat: update Dockerfile and Makefile for static files and compose configuration --- Dockerfile | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4cb75f..629a6b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,7 @@ WORKDIR /panettone COPY /app/ app/ COPY /tests/ tests/ COPY /templates/ templates/ +COPY /static/ /panettone/static/ COPY .env app/ COPY alembic.ini /panettone/alembic.ini COPY /alembic/ /panettone/alembic/ diff --git a/Makefile b/Makefile index c71dc53..e738138 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ help: ## Show this help # ==================================================================================== .PHONY: docker-build docker-build: ## Build project Docker images using compose - docker compose build + docker compose -f granian-compose.yml build .PHONY: docker-up docker-up: ## Run project with compose