From ee4ab49b30173103dafad85518f884d283002583 Mon Sep 17 00:00:00 2001 From: Laura Gutierrez Funderburk Date: Mon, 22 May 2023 21:22:59 -0700 Subject: [PATCH] revert docker-image.yml --- .github/workflows/docker-image.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ef8b79f..d657a63 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -12,19 +12,7 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - dockerfile: [Dockerfile.pipe, Dockerfile.api, Dockerfile.dash] - steps: - uses: actions/checkout@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Build and push - uses: docker/build-push-action@v2 - with: - context: . - file: ${{ matrix.dockerfile }} - push: true - tags: my-image-name:$(date +%s) - + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)