File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -11,27 +11,13 @@ COPY package.json pnpm-lock.yaml ./
11
11
RUN npm install -g pnpm && pnpm install
12
12
13
13
# Add the ARG directives for build-time environment variables
14
- ARG VITE_HOST
15
- ARG VITE_PORT
16
- ARG VITE_USER
17
- ARG VITE_PASS
18
- ARG VITE_NETWORK
19
- ARG VITE_TLS_CERT
20
- ARG VITE_ADMIN_MACAROON
21
- ARG VITE_LND_GRPC
14
+ ARG VITE_FAUCET_API
22
15
23
16
# Copy the rest of the application files into the container
24
17
COPY . .
25
18
26
19
# Build the application with the environment variables
27
- RUN VITE_HOST=$VITE_HOST \
28
- VITE_PORT=$VITE_PORT \
29
- VITE_USER=$VITE_USER \
30
- VITE_PASS=$VITE_PASS \
31
- VITE_NETWORK=$VITE_NETWORK \
32
- VITE_TLS_CERT=$VITE_TLS_CERT \
33
- VITE_ADMIN_MACAROON=$VITE_ADMIN_MACAROON \
34
- VITE_LND_GRPC=$VITE_LND_GRPC \
20
+ RUN VITE_FAUCET_API=$VITE_FAUCET_API \
35
21
pnpm build
36
22
37
23
# Expose the port the application will run on
You can’t perform that action at this time.
0 commit comments