Skip to content

Commit

Permalink
fix: upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousm4x committed Dec 28, 2024
1 parent 27e6bf0 commit 885b69f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3 as downloader
FROM alpine:3 AS downloader
ARG TARGETOS
ARG TARGETARCH
ARG TARGETVARIANT
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 885b69f

Please sign in to comment.