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 9be7bee commit 91e0d44Copy full SHA for 91e0d44
2 files changed
Dockerfile
@@ -1,11 +1,10 @@
1
-ARG ENABLE_PROXY=false
2
ARG BASE_IMAGE_TAG=nonroot
3
4
FROM debian:bullseye-slim AS deps
5
WORKDIR /workspace
6
7
-ARG ADC_VERSION=0.19.0
8
ARG TARGETARCH
+ARG ADC_VERSION
9
10
RUN apt update \
11
&& apt install -y wget \
Dockerfile.dev
@@ -3,15 +3,13 @@ ARG ENABLE_PROXY=false
FROM node:22 AS node_builder
-ARG ADC_COMMIT=e948079ed0576dbac29320ebfa01c9b7a298924c
WORKDIR /app
&& apt install -y git \
12
&& git clone --branch main https://github.com/api7/adc.git \
13
&& cd adc \
14
- && git checkout ${ADC_COMMIT} \
15
&& corepack enable pnpm \
16
&& pnpm install \
17
&& NODE_ENV=production npx nx build cli \
0 commit comments