mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-01-05 20:30:52 -05:00
fix casing
This commit is contained in:
parent
32822f0675
commit
747553edbc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user