* Upgrade to Go 1.16. Remove Go-Bind-assets in favor of embed. Checking Portal-UI Build folder. * lint * Remove assets references * Fixes for sub fs * Fix lint
14 lines
189 B
Docker
14 lines
189 B
Docker
FROM node:10 as uilayer
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./portal-ui/package.json ./
|
|
COPY ./portal-ui/yarn.lock ./
|
|
RUN yarn install
|
|
|
|
COPY ./portal-ui .
|
|
|
|
RUN yarn install && make build-static
|
|
|
|
USER node
|