1686f08040
Release pipeline / Get version (push) Has been cancelled
Release pipeline / Get Chart Name (push) Has been cancelled
Release pipeline / tests (push) Has been cancelled
Release pipeline / builds (push) Has been cancelled
Release pipeline / builds-ghcr (push) Has been cancelled
Release pipeline / test-deployments (push) Has been cancelled
Release pipeline / deploy (push) Has been cancelled
Release pipeline / Helm chart oci (push) Has been cancelled
Release pipeline / npm (push) Has been cancelled
Release pipeline / snyk (push) Has been cancelled
9 lines
183 B
Docker
9 lines
183 B
Docker
FROM emscripten/emsdk:4.0.23
|
|
WORKDIR /web-ifc-app
|
|
COPY package*.json .
|
|
RUN npm i -g cpy-cli
|
|
RUN npm i
|
|
COPY . .
|
|
RUN npm run build-release
|
|
EXPOSE 3000
|
|
ENTRYPOINT [ "npm", "run", "dev" ] |