Skip to content

Adding Dockerfile

Adding Dockerfile #1

Workflow file for this run

name: build-docker-image
on:
workflow_dispatch:
pull_request:
branches:
- c4t
- dev
env:
docker_image: "c4tplatform/camino-conduit"
jobs:
build_docker:
name: Build Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build docker image
run: |
docker build . -t ${{ env.docker_image }}:temp