From d0dd342e27cf4160f96faf87deff81f728e41e47 Mon Sep 17 00:00:00 2001 From: retoor Date: Thu, 8 May 2025 03:22:32 +0200 Subject: [PATCH] Update Makefile. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 878e699..f76d6dd 100644 --- a/Makefile +++ b/Makefile @@ -15,11 +15,14 @@ build: run: - $(GUNICORN) -w $(GUNICORN_WORKERS) -k aiohttp.worker.GunicornWebWorker snek.gunicorn:app --bind 0.0.0.0:$(PORT) --reload + .venv/usr/bin/snek + #$(GUNICORN) -w $(GUNICORN_WORKERS) -k aiohttp.worker.GunicornWebWorker snek.gunicorn:app --bind 0.0.0.0:$(PORT) --reload install: python3.12 -m venv .venv $(PIP) install -e . + +ubuntu: docker build -f DockerfileUbuntu -t snek_ubuntu .