From 2b2eefc1215b5395d2536d2eec49bc577e3f0441 Mon Sep 17 00:00:00 2001 From: Elijah Rippeth Date: Fri, 2 Aug 2024 11:47:06 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Fix=20Docker=20build=20warning?= =?UTF-8?q?=20(#1283)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 126ed9f..8728c7b 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # Stage 0, "build-stage", based on Node.js, to build and compile the frontend -FROM node:20 as build-stage +FROM node:20 AS build-stage WORKDIR /app