From 95b8cb60448117acd432c07b5913cf3c3b4da50c Mon Sep 17 00:00:00 2001 From: Rafael Pierre Date: Wed, 28 Feb 2024 17:28:47 +0000 Subject: [PATCH 1/5] tailscale --- .github/workflows/docker-build-action.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker-build-action.yaml b/.github/workflows/docker-build-action.yaml index 41d37d47..dd9f8cf6 100644 --- a/.github/workflows/docker-build-action.yaml +++ b/.github/workflows/docker-build-action.yaml @@ -36,10 +36,9 @@ jobs: uses: actions/checkout@v3 - name: Tailscale - uses: tailscale/github-action@v1 + uses: huggingface/tailscale-action@main with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} - version: 1.38.2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.0.0 From 1406b324bcf43c27f05d962b3003a99a2f6d973c Mon Sep 17 00:00:00 2001 From: Rafael Pierre Date: Wed, 28 Feb 2024 17:41:29 +0000 Subject: [PATCH 2/5] tailscale --- .github/workflows/docker-build-action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-build-action.yaml b/.github/workflows/docker-build-action.yaml index dd9f8cf6..6bce2099 100644 --- a/.github/workflows/docker-build-action.yaml +++ b/.github/workflows/docker-build-action.yaml @@ -36,9 +36,11 @@ jobs: uses: actions/checkout@v3 - name: Tailscale - uses: huggingface/tailscale-action@main + uses: tailscale/github-action@7a0b30ed3517c2244d1330e39467b95f067a33bd with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} + tailscaled-args: "--tun=userspace-networking --socks5-server=localhost:1055 --outbound-http-proxy-listen=localhost:1055" + version: ${{ vars.TAILSCALE_CLIENT_VERSION }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.0.0 From 82e7aa4125595e874a8dda19eb558298502860c1 Mon Sep 17 00:00:00 2001 From: Rafael Pierre Date: Sun, 3 Mar 2024 12:34:54 +0000 Subject: [PATCH 3/5] tailscale --- .github/workflows/docker-build-action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-build-action.yaml b/.github/workflows/docker-build-action.yaml index 6bce2099..14b8b3b5 100644 --- a/.github/workflows/docker-build-action.yaml +++ b/.github/workflows/docker-build-action.yaml @@ -36,7 +36,7 @@ jobs: uses: actions/checkout@v3 - name: Tailscale - uses: tailscale/github-action@7a0b30ed3517c2244d1330e39467b95f067a33bd + uses: huggingface/tailscale-action@main with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} tailscaled-args: "--tun=userspace-networking --socks5-server=localhost:1055 --outbound-http-proxy-listen=localhost:1055" From cc949febb3cd09c9917bdd858fe724b4bd211233 Mon Sep 17 00:00:00 2001 From: Guillaume LEGENDRE Date: Tue, 5 Mar 2024 15:20:28 +0100 Subject: [PATCH 4/5] remove Tailscale userspace mode --- .github/workflows/docker-build-action.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/docker-build-action.yaml b/.github/workflows/docker-build-action.yaml index 14b8b3b5..3bd48a88 100644 --- a/.github/workflows/docker-build-action.yaml +++ b/.github/workflows/docker-build-action.yaml @@ -39,9 +39,6 @@ jobs: uses: huggingface/tailscale-action@main with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} - tailscaled-args: "--tun=userspace-networking --socks5-server=localhost:1055 --outbound-http-proxy-listen=localhost:1055" - version: ${{ vars.TAILSCALE_CLIENT_VERSION }} - - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.0.0 with: @@ -64,4 +61,4 @@ jobs: context: ${{ inputs.context }} build-args: ${{ inputs.build_args }} file: ${{ inputs.context }}/${{ inputs.dockerfile }} - tags: ${{ inputs.repository }}/${{ inputs.image }}:${{ env.GITHUB_SHA_SHORT }},${{ inputs.repository }}/${{ inputs.image }}:latest \ No newline at end of file + tags: ${{ inputs.repository }}/${{ inputs.image }}:${{ env.GITHUB_SHA_SHORT }},${{ inputs.repository }}/${{ inputs.image }}:latest From fb07482e71575166880fe61b7b294d82c1b15354 Mon Sep 17 00:00:00 2001 From: Rafael Pierre Date: Wed, 6 Mar 2024 13:08:29 +0000 Subject: [PATCH 5/5] tf gpu uv --- dockerfiles/tensorflow/gpu/Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dockerfiles/tensorflow/gpu/Dockerfile b/dockerfiles/tensorflow/gpu/Dockerfile index 02018371..c42a33c0 100644 --- a/dockerfiles/tensorflow/gpu/Dockerfile +++ b/dockerfiles/tensorflow/gpu/Dockerfile @@ -34,11 +34,6 @@ RUN curl -L https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xj "bin WORKDIR /app -RUN curl -LsSf https://astral.sh/uv/install.sh | sh && \ - source $HOME/.cargo/env && \ - source .venv/bin/activate && \ - ls -all - # install base python dependencies COPY dockerfiles/tensorflow/gpu/environment.yaml /app/environment.yaml RUN micromamba install -y -n base -f environment.yaml \