Skip to content

Update Dockerfile

Update Dockerfile #7

Workflow file for this run

name: CI-Dockerhub
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Authenticate to Docker hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: build and push container to Docker Hub
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
push: true
tags: amadgakkhar/textcompletion-hf:latest