From b3a83c523807c177b15e1e9b4e4895f11ac0f915 Mon Sep 17 00:00:00 2001 From: Exynox Date: Sat, 31 Aug 2024 11:39:50 +0300 Subject: [PATCH] Fixed "FromAsCasing: 'as' and 'FROM' keywords' casing do not match" --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c970af..e853d41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 as build +FROM ubuntu:22.04 AS build WORKDIR /app # Set up the CMake repository @@ -26,7 +26,7 @@ RUN mkdir build/ RUN cd build && cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake .. RUN cd build && make -j $(nproc) -FROM ubuntu:22.04 as app +FROM ubuntu:22.04 AS app WORKDIR /app RUN apt-get update && apt-get install -y gettext python2 libdevil-dev libbsd-dev && apt-get clean