From 20a35b9e45b6c4783af3adb64894bde5d7906ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Wed, 22 Jan 2025 21:58:07 -0300 Subject: [PATCH] fixing image build tag --- .gitea/workflows/master.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/master.yml b/.gitea/workflows/master.yml index 7813728..96a9a4a 100644 --- a/.gitea/workflows/master.yml +++ b/.gitea/workflows/master.yml @@ -38,7 +38,7 @@ jobs: context: ./ file: ./Dockerfile push: true - tags: https://git.ivanch.me/ivanch/new-home/home-page:latest + tags: git.ivanch.me/ivanch/new-home/home-page:latest platforms: linux/amd64 - name: Image digest diff --git a/Dockerfile b/Dockerfile index c82682e..89d2dbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN npm run build FROM nginx:alpine -COPY --from=build /app/build /usr/share/nginx/html +COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80