From 747553edbcc92d78a6829cca2a84f138b69a41a8 Mon Sep 17 00:00:00 2001 From: pluja Date: Wed, 28 Aug 2024 08:26:53 +0200 Subject: [PATCH] fix casing --- src/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Dockerfile b/src/Dockerfile index 147ec5a..df58f0e 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,4 +1,4 @@ -FROM devopsworks/golang-upx:latest as builder +FROM devopsworks/golang-upx:latest AS builder WORKDIR /app COPY . . RUN go mod tidy @@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o kycnotme . && \ RUN chmod +x kycnotme # Tailwind CSS compiler -FROM node:latest as tailwind +FROM node:latest AS tailwind WORKDIR /app COPY ./package.json . @@ -18,7 +18,7 @@ COPY ./frontend/ /app/ RUN npm i && \ npx tailwindcss -i /app/static/css/input.css -o /app/style.css --minify -FROM alpine:latest as certs +FROM alpine:latest AS certs RUN apk --update add ca-certificates FROM scratch