Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/docker-build-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +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
with:
Expand All @@ -63,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
tags: ${{ inputs.repository }}/${{ inputs.image }}:${{ env.GITHUB_SHA_SHORT }},${{ inputs.repository }}/${{ inputs.image }}:latest
5 changes: 0 additions & 5 deletions dockerfiles/tensorflow/gpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down