Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
origamiofficial committed Dec 12, 2024
1 parent d31187d commit 4fda00e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Define ARG
ARG BASE_IMG_TAG=none
ARG UNBOUND_VERSION_CODE=none

FROM pihole/pihole:${BASE_IMG_TAG} as openssl

Expand Down Expand Up @@ -34,8 +33,11 @@ RUN set -e -x && \

FROM pihole/pihole:${BASE_IMG_TAG} as unbound

# Define ARG
ARG UNBOUND_VERSION_CODE=none

ENV NAME=unbound \
UNBOUND_VERSION=${ARG UNBOUND_VERSION_CODE} \
UNBOUND_VERSION=${UNBOUND_VERSION_CODE} \
UNBOUND_DOWNLOAD_URL=https://nlnetlabs.nl/downloads/unbound/unbound-${UNBOUND_VERSION}.tar.gz

WORKDIR /tmp/src
Expand Down

0 comments on commit 4fda00e

Please sign in to comment.