Remove build-stage that escaped from webconsole branch

This commit is contained in:
Denis Arh
2022-02-17 13:22:50 +01:00
parent 9142c7b5a3
commit 7691491003
-10
View File
@@ -1,12 +1,3 @@
# bundle web-console
FROM node:16.14-alpine as webconsole-build-stage
WORKDIR /webconsole
COPY ./webconsole ./
# Snapshot is built in development mode and with source map
RUN yarn install && yarn build --mode dev --sourcemap
# build server
FROM golang:1.17-buster as server-build-stage
@@ -18,7 +9,6 @@ WORKDIR /corteza
COPY . ./
COPY --from=webconsole-build-stage /webconsole/dist ./webconsole/dist
RUN make release-clean release