Skip to content

Commit

Permalink
feat: defined needed environment variables in static-builder.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Dec 6, 2023
1 parent 537f899 commit 10efdc1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions static-builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
FROM golang-base

ARG FRANKENPHP_VERSION=''
ENV FRANKENPHP_VERSION=${FRANKENPHP_VERSION}

ARG PHP_VERSION=''
ENV PHP_VERSION=${PHP_VERSION}

ARG PHP_EXTENSIONS=''
ENV PHP_EXTENSIONS=${PHP_EXTENSIONS}

ARG PHP_EXTENSION_LIBS=''
ENV PHP_EXTENSION_LIBS=${PHP_EXTENSION_LIBS}

ARG CLEAN=''
ARG EMBED=''
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
Expand Down

0 comments on commit 10efdc1

Please sign in to comment.