We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 390e370 commit 22bdde1Copy full SHA for 22bdde1
.github/workflows/docker-img.yml
@@ -30,7 +30,6 @@ jobs:
30
with:
31
push: true
32
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/atlp-devpulse-fn:latest
33
- build-args: BACKEND_URL=${{ secrets.BACKEND_URL }}
34
35
- name: Login to Digital Ocean Server
36
uses: appleboy/ssh-action@master
Dockerfile
@@ -2,6 +2,9 @@
2
FROM node:22-alpine AS builder
3
WORKDIR /app
4
5
+# Add the backend application in environment variables
6
+ENV BACKEND_URL=https://applications-bn.devpulse.org
7
+
8
# Copy package.json and package-lock.json
9
COPY package*.json ./
10
0 commit comments