fix casing

This commit is contained in:
pluja 2024-08-28 08:26:53 +02:00
parent 32822f0675
commit 747553edbc
No known key found for this signature in database

View File

@ -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