From 17c2c3750ff5885db7847d150d378370a6fbaaa8 Mon Sep 17 00:00:00 2001 From: Akshat Saxena <94232899+akshat-saxena01@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:02:00 +0530 Subject: [PATCH] Update Dockerfile Changing Dockerfile instruction to uppercase to match conventions. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dbcc4501..da256689 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # -- Stage 1 -- # # Compile the app. -FROM golang:1.12-alpine as builder +FROM golang:1.12-alpine AS builder WORKDIR /app # The build context is set to the directory where the repo is cloned. # This will copy all files in the repo to /app inside the container.