From ebb1f2e0d617352cfc14b355ca72535805eb8c03 Mon Sep 17 00:00:00 2001 From: supphakitd <67319010028@technictrang.ac.th> Date: Thu, 20 Nov 2025 10:38:00 +0700 Subject: [PATCH] workflow: testing build docker image Signed-off-by: supphakitd <67319010028@technictrang.ac.th> --- .gitea/workflows/build-image.yml | 5 +++-- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 53c4287..420d305 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -24,5 +24,6 @@ jobs: ng build - name: Build docker image run: | - ls accounting-ng-nuttakit/dist/accounting-ng-nuttakit - docker -v + docker build . -t accounting-frontend:latest + docker image ls + \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 719d1f3..501b341 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:alpine -ADD browser /usr/share/nginx/html +ADD accounting-ng-nuttakit/dist/accounting-ng-nuttakit/browser /usr/share/nginx/html