From 99a69463e95ad2cf22a8c30036910edbae08c4fc Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Mon, 11 Sep 2023 10:32:16 +0100 Subject: [PATCH] Refactor Dockerfile and Makefile for improved readability and consistency - Renamed build/Dockerfile to Dockerfile - Updated Makefile to use "docker compose" instead of "docker-compose" - Added newline at the end of the file in run target --- build/Dockerfile => Dockerfile | 0 Makefile | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename build/Dockerfile => Dockerfile (100%) diff --git a/build/Dockerfile b/Dockerfile similarity index 100% rename from build/Dockerfile rename to Dockerfile diff --git a/Makefile b/Makefile index 63cf374f..0bffab67 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ build: - docker-compose build + docker compose build run: - docker-compose up \ No newline at end of file + docker compose up