From 742b2a57afa46a5cc21bea5e8e608589de0504f7 Mon Sep 17 00:00:00 2001 From: A'zamov Samandar Date: Mon, 21 Apr 2025 13:13:37 +0500 Subject: [PATCH] Dockerfile va docker-compose.yml o'zgartirishlar: volumes olib tashlandi, .env qo'shildi --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b5f9de3..8f77c01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine as build +FROM golang:alpine AS build WORKDIR /app @@ -15,5 +15,6 @@ FROM alpine WORKDIR /app COPY --from=build /app/notification . +COPY ./.env /app/ CMD ["./notification"]