fix: upper case

This commit is contained in:
Maxi Quoß
2024-12-28 12:44:44 +01:00
parent 27e6bf01d3
commit 885b69ff03
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM alpine:3 as downloader
FROM alpine:3 AS downloader
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT

View File

@@ -1,11 +1,11 @@
FROM node:alpine as node
FROM node:alpine AS node
WORKDIR /app
COPY frontend/ .
RUN npm i -g pnpm &&\
pnpm i &&\
pnpm run build
FROM golang:alpine as go
FROM golang:alpine AS go
WORKDIR /app
COPY backend/ .
COPY --from=node /app/build ./pb_public