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 e13bcb2 commit bb1c41fCopy full SHA for bb1c41f
proxy-golang/Dockerfile
@@ -16,13 +16,16 @@ RUN CGO_ENABLED=0 go build -o proxyserver .
16
FROM alpine:3.18
17
RUN apk --no-cache add ca-certificates
18
19
-# Create a non-root user (optional)
20
-RUN addgroup -S appgroup && adduser -S appuser -G appgroup
21
-USER appuser
22
-
23
WORKDIR /app
24
COPY --from=builder /app/proxyserver /app/proxyserver
25
26
EXPOSE 8080
27
+ENV INDEXER_URLS_JSON=/config/indexer_urls.json
+ENV API_KEYS_FILE=/config/api_keys.json
+ENV PARAMETERS_CONFIG_FILE = /config/allowed_parameters.json
+ENV DD_AGENT_HOST=localhost
28
+ENV DD_DOGSTATSD_PORT=8125
29
+ENV DD_IAST_ENABLED=true
30
+
31
CMD ["/app/proxyserver"]
0 commit comments