chore: upgrade version to 0.10.1 (#949)

This commit is contained in:
boojack
2023-01-14 08:00:07 +08:00
committed by GitHub
parent 4cfd000b92
commit 677750ef51
5 changed files with 11 additions and 11 deletions

View File

@@ -4,15 +4,13 @@ WORKDIR /frontend-build
COPY ./web/ .
RUN yarn
RUN yarn build
RUN yarn && yarn build
# Build backend exec file.
FROM golang:1.19.3-alpine3.16 AS backend
WORKDIR /backend-build
RUN apk update
RUN apk --no-cache add gcc musl-dev
RUN apk update && apk add --no-cache gcc musl-dev
COPY . .
COPY --from=frontend /frontend-build/dist ./server/dist