build frontend before UI
This commit is contained in:
parent
04c3c4d12a
commit
a89f640bc0
|
@ -4,4 +4,4 @@
|
|||
/.git
|
||||
/frontend/node_modules
|
||||
/frontend/.angular
|
||||
/dist
|
||||
|
||||
|
|
|
@ -28,10 +28,10 @@ jobs:
|
|||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18.x
|
||||
- name: Create Yarn Cache
|
||||
- name: Build Frontend
|
||||
run: |
|
||||
cd frontend
|
||||
yarn install --frozen-lockfile
|
||||
make build-frontend-${{ github.ref_name == 'sandbox' && 'sandbox' || 'prod' }}
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
|
22
Dockerfile
22
Dockerfile
|
@ -1,13 +1,21 @@
|
|||
#########################################################################################################
|
||||
# Frontend Build
|
||||
#########################################################################################################
|
||||
FROM node:18 as frontend-build
|
||||
ARG FASTEN_ENV=sandbox
|
||||
WORKDIR /usr/src/fastenhealth/frontend
|
||||
COPY frontend/ ./
|
||||
# !!!! GAH !!!!
|
||||
# https://blog.thesparktree.com/docker-multi-arch-github-actions#q-i-enabled-multi-arch-builds-and-my-builds-take-1h-what-gives
|
||||
# https://github.com/fastenhealth/fasten-onprem/issues/43
|
||||
|
||||
#make sure you run `make frontend-build-sandbox` or `make frontend-build-main` before `docker build .`
|
||||
|
||||
#FROM node:18 as frontend-build
|
||||
#ARG FASTEN_ENV=sandbox
|
||||
#WORKDIR /usr/src/fastenhealth/frontend
|
||||
#COPY frontend/ ./
|
||||
#
|
||||
#RUN yarn install --frozen-lockfile && \
|
||||
# yarn run build -- --configuration ${FASTEN_ENV} --output-path=../dist
|
||||
|
||||
|
||||
RUN yarn install --frozen-lockfile && \
|
||||
yarn run build -- --configuration ${FASTEN_ENV} --output-path=../dist
|
||||
|
||||
#########################################################################################################
|
||||
# Backend Build
|
||||
|
@ -37,7 +45,7 @@ FROM gcr.io/distroless/static-debian11
|
|||
|
||||
WORKDIR /opt/fasten/
|
||||
COPY --from=backend-build /opt/fasten/ /opt/fasten/
|
||||
COPY --from=frontend-build /usr/src/fastenhealth/dist /opt/fasten/web
|
||||
COPY dist/ /opt/fasten/web/
|
||||
COPY --from=backend-build /go/bin/fasten /opt/fasten/fasten
|
||||
COPY LICENSE.md /opt/fasten/LICENSE.md
|
||||
COPY config.yaml /opt/fasten/config/config.yaml
|
||||
|
|
10
Makefile
10
Makefile
|
@ -37,6 +37,16 @@ frontend-dep:
|
|||
cd frontend
|
||||
yarn install --frozen-lockfile
|
||||
|
||||
.PHONY: frontend-build-sandbox
|
||||
frontend-build-sandbox: frontend-dep
|
||||
cd frontend
|
||||
yarn run build -- --configuration sandbox --output-path=../dist
|
||||
|
||||
.PHONY: frontend-build-prod
|
||||
frontend-build-sandbox: frontend-dep
|
||||
cd frontend
|
||||
yarn run build -- --configuration prod --output-path=../dist
|
||||
|
||||
.PHONY: frontend-test
|
||||
# reduce logging, disable angular-cli analytics for ci environment
|
||||
frontend-test: frontend-dep
|
||||
|
|
Loading…
Reference in New Issue