weather #3

Merged
arif merged 25 commits from weather into main 2025-08-29 14:10:55 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2cb457c776 - Show all commits

View File

@@ -53,7 +53,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
run: docker build -t git.rivercry.com/wg/monitor-im-flur .
run: ls -la && docker build -t git.rivercry.com/wg/monitor-im-flur .
- name: Push Docker image
run: docker push git.rivercry.com/wg/monitor-im-flur

View File

@@ -2,7 +2,7 @@ FROM nginx:latest
WORKDIR /app
COPY ./dist/* .
COPY ./build/* .
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]