Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added GitHub workflow to push to Docker Hub #1160

Merged
merged 2 commits into from
Apr 21, 2021
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
39 changes: 39 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: docker

on:
push:
branches:
- 'master'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Add SHORT_SHA environment variable
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/ludwig-ray/Dockerfile
push: true
tags:
- ludwigai/ludwig-ray:latest
- ludwigai/ludwig-ray:${SHORT_SHA}
File renamed without changes.
33 changes: 33 additions & 0 deletions docker/ludwig-ray/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Ludwig Docker image with Ray nightly support and full dependencies including:
# text features
# image features
# audio features
# visualizations
# hyperparameter optimization
# distributed training
# model serving
#

FROM rayproject/ray:nightly

RUN sudo apt-get update && DEBIAN_FRONTEND="noninteractive" sudo apt-get install -y \
wget \
build-essential \
git \
curl \
libsndfile1 \
cmake \
tzdata \
rsync \
vim

WORKDIR /ludwig

COPY . .
RUN HOROVOD_GPU_OPERATIONS=NCCL \
HOROVOD_WITH_TENSORFLOW=1 \
HOROVOD_WITHOUT_MPI=1 \
HOROVOD_WITHOUT_PYTORCH=1 \
HOROVOD_WITHOUT_MXNET=1 \
pip install --no-cache-dir '.[full]'
File renamed without changes.