Skip to content

Commit

Permalink
Switch dockerfile instruction to Debian (#1303)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhelias committed Mar 30, 2024
1 parent 9fd92da commit 5109705
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 30 deletions.
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/1.12/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/db_name?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\",
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql && \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5 && \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/1.6/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\",
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql && \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5 && \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/2.0/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\",
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql && \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5 && \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/2.3/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\",
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql; \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5; \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/2.4/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\",
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql; \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5; \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
5 changes: 1 addition & 4 deletions doctrine/doctrine-bundle/2.8/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
"DATABASE_URL": "postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
},
"dockerfile": [
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev; \\",
"\tdocker-php-ext-install -j\"$(nproc)\" pdo_pgsql; \\",
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5; \\",
"\tapk del .pgsql-deps"
"RUN install-php-extensions pdo_pgsql"
],
"docker-compose": {
"docker-compose.yml": {
Expand Down
12 changes: 6 additions & 6 deletions symfony/panther/1.0/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"ENV PANTHER_NO_SANDBOX 1",
"# Not mandatory, but recommended",
"ENV PANTHER_CHROME_ARGUMENTS='--disable-dev-shm-usage'",
"RUN apk add --no-cache chromium chromium-chromedriver",
"RUN apt-get install -y --no-install-recommends chromium chromium-driver",
"",
"# Firefox and geckodriver",
"#ARG GECKODRIVER_VERSION=0.29.0",
"#RUN apk add --no-cache firefox",
"#RUN wget -q https://github.com/mozilla/geckodriver/releases/download/v$GECKODRIVER_VERSION/geckodriver-v$GECKODRIVER_VERSION-linux64.tar.gz; \\",
"#\ttar -zxf geckodriver-v$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/bin; \\",
"#\trm geckodriver-v$GECKODRIVER_VERSION-linux64.tar.gz"
"#ARG GECKODRIVER_VERSION=0.34.0",
"#RUN apt-get install -y --no-install-recommends firefox",
"#RUN wget -q https://github.com/mozilla/geckodriver/releases/download/v$GECKODRIVER_VERSION/geckodriver-v$GECKODRIVER_VERSION-aarch64.tar.gz; \\",
"#\ttar -zxf geckodriver-v$GECKODRIVER_VERSION-aarch64.tar.gz -C /usr/bin; \\",
"#\trm geckodriver-v$GECKODRIVER_VERSION-aarch64.tar.gz"
],
"add-lines": [
{
Expand Down

0 comments on commit 5109705

Please sign in to comment.