From 8eb7eae50e9cdef64403cdb3e4cd63fb180c0f22 Mon Sep 17 00:00:00 2001 From: thenick775 Date: Sat, 12 Oct 2024 13:34:28 -0700 Subject: [PATCH] fix: docker warnings --- admin/Dockerfile | 2 +- auth/Dockerfile | 2 +- gbajs3/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index 8704c1ce..462676c6 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -1,5 +1,5 @@ # first stage - builder -FROM golang:alpine as builder +FROM golang:alpine AS builder WORKDIR /app/ COPY . /app/ RUN apk update && apk add make diff --git a/auth/Dockerfile b/auth/Dockerfile index 1214da35..ee5dc414 100644 --- a/auth/Dockerfile +++ b/auth/Dockerfile @@ -1,5 +1,5 @@ # first stage - builder -FROM golang:alpine as builder +FROM golang:alpine AS builder WORKDIR /app/ COPY . /app/ ENV GO111MODULE=on diff --git a/gbajs3/Dockerfile b/gbajs3/Dockerfile index 6a1e9a49..0a942c72 100644 --- a/gbajs3/Dockerfile +++ b/gbajs3/Dockerfile @@ -1,5 +1,5 @@ # first stage - builder -FROM node:20.12.1-alpine3.19 as builder +FROM node:20.12.1-alpine3.19 AS builder WORKDIR /app COPY . /app