Author SHA1 Message Date
legonzaur d5fbec27dd fix env in containerfile
release-tag / release-image (push) Failing after 34s
2025-06-01 13:15:53 +02:00
legonzaur 55c41a1103 fix build ?
release-tag / release-image (push) Failing after 10s
2025-06-01 13:14:11 +02:00
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -17,12 +17,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: ${{ env.ENDPOINT }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# - name: Login to DockerHub
# uses: docker/login-action@v2
# with:
# registry: ${{ env.ENDPOINT }}
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: meta
+1 -1
View File
@@ -14,7 +14,7 @@ WORKDIR /app
COPY --from=build-stage /app/.output/ /app
COPY --from=build-stage /app/node_modules/ /app/node_modules
ENV NUXT_PUBLIC_API_BASE
ENV NUXT_PUBLIC_API_BASE=http://localhost:3000
EXPOSE 3000
CMD ["node", "server/index.mjs"]