File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Docker Image CI
2+
3+ on :
4+ push :
5+ branches : ["**"]
6+ pull_request :
7+ branches : ["**"]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v4
15+ - name : Build the Docker image
16+ run : docker build . --file Dockerfile --tag my-image-name:$(date +%s)
Original file line number Diff line number Diff line change 1+ FROM node:alpine
2+
3+ RUN npm run build
4+
5+ EXPOSE 3000
6+
7+ ENTRYPOINT ["npm" ,"run" ,"start" ]
Original file line number Diff line number Diff line change 11# LBRY Web
22
3+ [ ![ Node.js CI] ( https://github.com/LBRYFoundation/lbry-web/actions/workflows/node.js.yml/badge.svg )] ( https://github.com/LBRYFoundation/lbry-web/actions/workflows/node.js.yml )
4+ [ ![ Docker Image CI] ( https://github.com/LBRYFoundation/lbry-web/actions/workflows/docker-image.yml/badge.svg )] ( https://github.com/LBRYFoundation/lbry-web/actions/workflows/docker-image.yml )
5+
36The LBRY Web interface to interact with the LBRY Daemon from in the browser.
47
58## License
You can’t perform that action at this time.
0 commit comments