🚚(docker) make images naming consistent

It was quite confusing having development, production and
frontend images' names in the same Docker file. New comers
to the project would have some difficuluties when
differentiating frontend from backend images.

Try to make these naming more explicit and consistent.
Thanks @rouja for your recommendation.
This commit is contained in:
Lebaud Antoine
2024-03-14 17:56:44 +01:00
committed by aleb_the_flash
parent 78459df962
commit a2ff33663b
3 changed files with 11 additions and 11 deletions

View File

@@ -42,7 +42,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
target: production
target: backend-production
build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
@@ -75,7 +75,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
target: frontend
target: frontend-production
build-args: DOCKER_USER=${{ env.DOCKER_USER }}:-1000
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}