From f56229bccea340da64f64217d2c4dea37e6a6150 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 13 Aug 2020 00:29:44 -0400 Subject: [PATCH] Dockerfile --- .dockerignore | 2 +- .github/workflows/main.yml | 7 +++---- Dockerfile | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.dockerignore b/.dockerignore index 3cae7c894..c1068f2f3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,2 @@ * -!dist/lbrynet +!lbrynet diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8e1f600a9..94a15b0c3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -126,8 +126,8 @@ jobs: matrix: os: - ubuntu-16.04 - - macos-latest - - windows-latest +# - macos-latest +# - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 @@ -175,7 +175,7 @@ jobs: docker: needs: ["build"] - name: "docker image" + name: "build (docker)" runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -183,7 +183,6 @@ jobs: uses: actions/download-artifact@v2 with: name: lbrynet-ubuntu-16.04 - - run: ls - name: build and push docker image uses: docker/build-push-action@v1 with: diff --git a/Dockerfile b/Dockerfile index e4b95bae8..9deb15bd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM ubuntu:20.04 -COPY ./dist/lbrynet /bin +COPY lbrynet /bin ENTRYPOINT ["lbrynet", "start", "--full-node"]