This repository was archived by the owner on Nov 3, 2024. It is now read-only.
File tree 7 files changed +6
-25
lines changed
laravel-horizon/dot.ddev/web-build
web-container-dockerfiles
7 files changed +6
-25
lines changed Original file line number Diff line number Diff line change 1
- ARG BASE_IMAGE
2
- FROM $BASE_IMAGE
3
- ENV PHP_EXTENSIONS="curl fileinfo gd pdo_mysql"
1
+ ARG PHP_EXTENSIONS="curl fileinfo gd pdo_mysql"
4
2
SHELL ["bash" , "-c" ]
5
3
6
- RUN apt-get update -qq && apt-get install -y -qq build-essential less libpng-dev netcat procps telnet vim zlib1g-dev
4
+ RUN ( apt-get update || true) && apt-get install -y -qq build-essential less libpng-dev netcat procps telnet vim zlib1g-dev
7
5
RUN set -eu -o pipefail && for extension in ${PHP_EXTENSIONS}; do \
8
6
docker-php-ext-configure ${extension} && docker-php-ext-install ${extension}; \
9
7
done
Original file line number Diff line number Diff line change 1
- ARG BASE_IMAGE
2
- FROM $BASE_IMAGE
3
-
4
1
ENV PATH="${PATH}:/opt/mssql-tools/bin"
5
- RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests apt-utils curl gnupg2 ca-certificates
2
+ RUN ( apt-get update || true) && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests apt-utils curl gnupg2 ca-certificates
6
3
7
4
RUN curl -sSL -O https://packages.microsoft.com/keys/microsoft.asc
8
5
RUN apt-key add <microsoft.asc
9
6
RUN curl -sSL -o /etc/apt/sources.list.d/mssql-release.list https://packages.microsoft.com/config/debian/11/prod.list
10
7
11
- RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests build-essential dialog php-pear php-dev unixodbc-dev locales
8
+ RUN ( apt-get update || true) && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confold" --no-install-recommends --no-install-suggests build-essential dialog php-pear php-dev unixodbc-dev locales
12
9
13
10
RUN ACCEPT_EULA=Y DEBIAN_FRONTEND=noninteractive apt-get install -y msodbcsql18 mssql-tools
14
11
Original file line number Diff line number Diff line change 1
- ARG BASE_IMAGE
2
- FROM $BASE_IMAGE
3
-
4
1
# Add horizon supervisor
5
2
ADD horizon.conf /etc/supervisor/conf.d
Original file line number Diff line number Diff line change 1
1
# This is a Dockerfile for use with the ddev-webserver image
2
2
# It should be in .ddev/web-build/Dockerfile
3
3
# and then you can expand on it.
4
- ARG BASE_IMAGE=drud/ddev-webserver:v1.9.1
5
- FROM $BASE_IMAGE
6
4
# If HTTP_PROXY is set in the docker environment, then add the same proxy configuration
7
5
# into apt system in the Debian-based ddev-webserver image at
8
6
# /etc/apt/apt.conf.d/proxy.conf
Original file line number Diff line number Diff line change 1
- ARG BASE_IMAGE
2
- FROM $BASE_IMAGE
3
-
4
1
ENV PHP_VERSION=$DDEV_PHP_VERSION
5
2
RUN \
6
- apt-get update && apt-get install -y libz-dev php-dev php-pear && \
3
+ ( apt-get update || true) && apt-get install -y libz-dev php-dev php-pear && \
7
4
pecl install grpc && \
8
5
pecl install protobuf && \
9
6
echo "extension=grpc.so" > /etc/php/$DDEV_PHP_VERSION/cli/conf.d/grpc.ini && \
Original file line number Diff line number Diff line change 1
- ARG BASE_IMAGE
2
- FROM $BASE_IMAGE
3
1
ADD laravel-worker.conf /etc/supervisor/conf.d/
4
2
Original file line number Diff line number Diff line change 1
1
2
2
# Install the Stripe CLI
3
3
# Documentation: https://stripe.com/docs/stripe-cli#install
4
-
5
- ARG BASE_IMAGE
6
- FROM $BASE_IMAGE
7
-
8
4
RUN curl -s https://packages.stripe.dev/api/security/keypair/stripe-cli-gpg/public | gpg --dearmor | sudo tee /usr/share/keyrings/stripe.gpg
9
5
RUN echo "deb [signed-by=/usr/share/keyrings/stripe.gpg] https://packages.stripe.dev/stripe-cli-debian-local stable main" | sudo tee -a /etc/apt/sources.list.d/stripe.list
10
- RUN sudo apt update && apt install stripe
6
+ RUN ( apt update || true) && apt install stripe
You can’t perform that action at this time.
0 commit comments