8000 Comment out optional Rust installation steps in the Dockerfile for clarity and future reference · coolbeevip/docker@1d900cf · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Comment out optional Rust installation steps in the Dockerfile for cl… #3

Comment out optional Rust installation steps in the Dockerfile for cl…

Comment out optional Rust installation steps in the Dockerfile for cl… #3

Workflow file for this run

name: langchain-cpu
on:
push:
paths:
- "rust/rust-musl/**"
- ".github/workflows/rust-musl.yml"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Cache Docker Layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and Push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./rust/rust-musl
file: ./rust/rust-musl/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: coolbeevip/rust-musl:1.2.5
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Image Digest
run: echo ${{ steps.docker_build.outputs.digest }}
0