From 86a513f456d0972e4b5597faa37e8e7097fdcc72 Mon Sep 17 00:00:00 2001 From: Deepak Panwar <97603455+deepak-devtron@users.noreply.github.com> Date: Wed, 10 Aug 2022 18:06:47 +0530 Subject: [PATCH] Update Dockerfile for testing purpose only --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03968a1..637174a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -################################# Build Container ############################### +################################# Build Container ################################ FROM golang:1.16 as builder @@ -12,7 +12,7 @@ ADD . /app/ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main app.go -################################# Prod Container ################################# +################################# Prod Container ################################## # Use a minimal alpine image FROM alpine:3.7