diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 526c8d8..6a51fa1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -24,8 +24,16 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Checkout to waku-frontend + uses: actions/checkout@v3 + with: + repository: waku-org/waku-frontend + - name: Setup node.js uses: actions/setup-node@v3 + with: + node-version: 18 + registry-url: "https://registry.npmjs.org" - name: Setup npm uses: bahmutov/npm-install@v1 diff --git a/README.md b/README.md index 1b8c100..7d06bb9 100644 --- a/README.md +++ b/README.md @@ -29,5 +29,5 @@ npm run serve ```bash npm run build docker build -t waku_frontend . -docker run -d -p 300:3000 waku_frontend +docker run -d -p 8080:80 waku_frontend ```