From 0f9551da92ca360e0cdd343f370ff445fac48a65 Mon Sep 17 00:00:00 2001 From: Jay Date: Sun, 7 Jan 2024 19:11:04 -0500 Subject: [PATCH] Update docker-image.yml --- .github/workflows/docker-image.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 3fdb0bb..52600c7 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -15,8 +15,7 @@ jobs: steps: - name: Checkout backend code uses: actions/checkout@v3 - with: - path: 'backend' + - name: Build and push the Docker image for backend run: | docker build ./backend -t themanwholikestocode/archive-me-prod:backend-$(date +%s) @@ -28,8 +27,7 @@ jobs: steps: - name: Checkout frontend code uses: actions/checkout@v3 - with: - path: 'frontend' + - name: Build and push the Docker image for frontend run: | docker build ./frontend -t themanwholikestocode/archive-me-prod:frontend-$(date +%s)