diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 11f0e73..9fd896b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -60,6 +60,16 @@ jobs: run: | pytest tests --capture=no + - name: Log in to Docker Hub + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Push image to DockerHub + run: | + docker push --all-tags + - name: where am I run: | pwd diff --git a/.gitignore b/.gitignore index ba7c92c..bcd003b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ runs/ *.zip catboost_info/ .cache +/build/ diff --git a/Dockerfile b/Dockerfile index 5611114..15f7eb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ ENV PYTORCH_VERSION ${PYTORCH_VERSION} COPY ./ /workspace/ WORKDIR /workspace/ RUN /opt/mamba/bin/python -m pip install --upgrade pip && \ - /opt/mamba/bin/python -m pip install -e .[cv,cv_classification,cv_semantic,cv_detection,nlp,nlp_retrieval,tabular,tabular_classification,dev] && \ + /opt/mamba/bin/python -m pip install -e .[cv,cv_classification,cv_semantic,cv_detection,nlp,nlp_retrieval,ml,dev] && \ /opt/mamba/bin/python -m pip install dvc dvc-gdrive && \ /opt/mamba/bin/python -m pip install -U timm