Skip to content

Commit

Permalink
Fixed minor build issue.
Browse files Browse the repository at this point in the history
* Replaced outdated environment variable name.
  • Loading branch information
sk4la committed Dec 23, 2023
1 parent fd18f46 commit 2cd5881
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/dwarf2json/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# See https://github.com/sk4la/volatility3-docker for more details.

ARG ALPINE_VERSION="latest"
ARG DOCKER_TAG_ALPINE="latest"

FROM "alpine:${ALPINE_VERSION}" AS stage
FROM "alpine:${DOCKER_TAG_ALPINE}" AS stage

ARG GIT_TAG_DWARF2JSON="master"

Expand All @@ -24,7 +24,7 @@ RUN go build -ldflags="-s -w"
RUN apk --purge del \
stage

FROM "alpine:${ALPINE_VERSION}" AS production
FROM "alpine:${DOCKER_TAG_ALPINE}" AS production

ARG INSTALL_GROUP="ci"
ARG INSTALL_USER="unprivileged"
Expand Down
6 changes: 3 additions & 3 deletions src/volatility/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# See https://github.com/sk4la/volatility3-docker for more details.

ARG ALPINE_VERSION="latest"
ARG DOCKER_TAG_ALPINE="latest"

FROM "alpine:${ALPINE_VERSION}" AS stage
FROM "alpine:${DOCKER_TAG_ALPINE}" AS stage

ARG GIT_TAG_PYTHON_YARA="master"

Expand All @@ -29,7 +29,7 @@ RUN python3 setup.py build
RUN apk --purge del \
stage

FROM "alpine:${ALPINE_VERSION}" AS production
FROM "alpine:${DOCKER_TAG_ALPINE}" AS production

ARG GIT_TAG_VOLATILITY="stable"
ARG GIT_TAG_VOLATILITY_COMMUNITY="master"
Expand Down
6 changes: 3 additions & 3 deletions src/volatility3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# See https://github.com/sk4la/volatility3-docker for more details.

ARG ALPINE_VERSION="latest"
ARG DOCKER_TAG_ALPINE="latest"

FROM "alpine:${ALPINE_VERSION}" AS stage
FROM "alpine:${DOCKER_TAG_ALPINE}" AS stage

ARG GIT_TAG_JPCERT_SYMBOLS="main"
ARG GIT_TAG_PYTHON_YARA="master"
Expand Down Expand Up @@ -50,7 +50,7 @@ RUN curl --location --max-redirs 1 \
RUN apk --purge del \
stage

FROM "alpine:${ALPINE_VERSION}" AS production
FROM "alpine:${DOCKER_TAG_ALPINE}" AS production

ARG GIT_TAG_VOLATILITY3="stable"

Expand Down

0 comments on commit 2cd5881

Please sign in to comment.