From 49ff510a3d6ea78e2ccc3eac1abd1e0835a7bc3e Mon Sep 17 00:00:00 2001 From: parMaster Date: Tue, 9 Jul 2024 16:56:00 +0300 Subject: [PATCH] fixed FromAsCasing docker warning --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 724221a..68e6cfb 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # docker run -it --rm -p 8080:8080 -v ./config/config.yml:/app/config.yml zoomrs # # Build stage -FROM golang:1.22-bullseye as base +FROM golang:1.22-bullseye AS base RUN adduser \ --disabled-password \ @@ -48,4 +48,4 @@ USER api-user:api-user # Expose the port EXPOSE 8080 -CMD ["./zoomrs", "--config", "config.yml"] \ No newline at end of file +CMD ["./zoomrs", "--config", "config.yml"]