File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,14 @@ Then open it specifying the config leader service with `https://l.backloop.dev:8
4141just publish
4242```
4343
44+ ### Publishing DOcker
45+ check version in build script
4446
45- ## License
47+ ` ./build/build `
4648
47- [ BSD-3-Clause] ( https://github.com/pryv/app-web-admin/blob/master/LICENSE )
49+ ### Todo
50+ - review docker building process
51+ - realease github workflow has been archived in ` archives ` it needs to rewritten to publish on dockerHub
4852
4953
5054# License
Original file line number Diff line number Diff line change 1+ # previous version made to publish on Azure should be adapted to publish on dockerHub
12name : Admin panel deploy release
23
34on :
Original file line number Diff line number Diff line change 1- FROM eu.gcr .io/pryvio/base:1.7.0 as build-stage
1+ FROM docker .io/pryvio/base:1.7.0 as build-stage
22LABEL "Tech@Pryv" <tech@pryv.com>
33WORKDIR /app
44COPY ./package.json ./
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -e
4+
5+ version=1.0.4
6+ host=' docker.io'
7+
8+ echo " ---------------------------- building mfa --------------------------------"
9+ echo $host /pryvio/app-web-auth3:$version
10+ docker build --build-arg COMPONENT_NAME=app-web-auth3 -f build/Dockerfile -t $host /pryvio/app-web-auth3:$version .
11+ docker push $host /pryvio/app-web-auth3:$version
You can’t perform that action at this time.
0 commit comments