We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e6bf0 commit 885b69fCopy full SHA for 885b69f
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3 as downloader
+FROM alpine:3 AS downloader
2
ARG TARGETOS
3
ARG TARGETARCH
4
ARG TARGETVARIANT
Dockerfile.dev
@@ -1,11 +1,11 @@
-FROM node:alpine as node
+FROM node:alpine AS node
WORKDIR /app
COPY frontend/ .
RUN npm i -g pnpm &&\
5
pnpm i &&\
6
pnpm run build
7
8
-FROM golang:alpine as go
+FROM golang:alpine AS go
9
10
COPY backend/ .
11
COPY --from=node /app/build ./pb_public
0 commit comments