parent
d3b03f3c45
commit
42bd753900
@ -1,14 +1,14 @@
|
|||||||
FROM node:alpine AS frontend-builder
|
FROM node:lts-alpine AS frontend-builder
|
||||||
|
|
||||||
ADD . .
|
ADD . .
|
||||||
RUN cd frontend && npm install && npm run build
|
RUN cd frontend && npm install && npm run build
|
||||||
|
|
||||||
FROM golang:alpine AS builder
|
FROM golang:alpine AS builder
|
||||||
|
|
||||||
ADD . .
|
ADD . /app
|
||||||
COPY --from=frontend-builder frontend/dist frontend/dist
|
COPY --from=frontend-builder frontend/dist /app/frontend/dist
|
||||||
|
|
||||||
RUN go build -o minify
|
RUN cd /app && go build -o minify
|
||||||
|
|
||||||
FROM alpine
|
FROM alpine
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user