Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*

COPY files /
COPY files/general /

FROM runtime AS builder

Expand Down Expand Up @@ -241,6 +241,7 @@ ARG TARGETARCH
ARG DEBIAN_FRONTEND=noninteractive

ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
ENV npm_config_cache="$XDG_CACHE_HOME/npm"

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*

COPY files /
COPY files/general /

FROM runtime AS builder

Expand Down Expand Up @@ -242,6 +242,7 @@ ARG TARGETARCH
ARG DEBIAN_FRONTEND=noninteractive

ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
ENV npm_config_cache="$XDG_CACHE_HOME/npm"

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
4 changes: 3 additions & 1 deletion frankenphp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/*

COPY files /
COPY files/general /
COPY files/frankenphp /

FROM runtime AS builder

Expand Down Expand Up @@ -245,6 +246,7 @@ ARG TARGETARCH
ARG DEBIAN_FRONTEND=noninteractive

ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
ENV npm_config_cache="$XDG_CACHE_HOME/npm"

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down