-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(env): create dotenv file to use for makefile and gitlab ci varia…
…bles
- Loading branch information
Showing
6 changed files
with
60 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Gitlab CI for Drupal CI Images Changelog | ||
|
||
## 4.0 (2024-05-22) | ||
|
||
### Features | ||
|
||
* create dotenv file to use for makefile and gitlab ci variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
IMAGE_VERSION=4.0 | ||
NODE_VERSION=20 | ||
DRUPAL_PREVIOUS=10.1 | ||
DRUPAL_PREVIOUS_PHP=8.1 | ||
DRUPAL_CURRENT=10.2 | ||
DRUPAL_CURRENT_PHP=8.2 | ||
DRUPAL_NEXT=10.3 | ||
DRUPAL_NEXT_PHP=8.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM debian:bullseye-slim | ||
|
||
ARG IMAGE_VERSION='1.3' | ||
ARG IMAGE_VERSION=1.0 | ||
|
||
LABEL name="chrome-headless" | ||
LABEL maintainer="[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
ARG IMAGE_TAG=10.2 | ||
ARG PHP_VERSION=8.2 | ||
|
||
# https://github.com/docker-library/drupal/blob/master/$IMAGE_TAG/php$PHP_VERSION/apache-buster/Dockerfile | ||
# https://github.com/docker-library/drupal/blob/master/$IMAGE_TAG/php$PHP_VERSION | ||
FROM drupal:${IMAGE_TAG}-php${PHP_VERSION} | ||
|
||
ARG IMAGE_VERSION=1.0 | ||
ARG NODE_VERSION=20 | ||
|
||
ARG IMAGE_TAG=10.2 | ||
ARG PHP_VERSION=8.2 | ||
ARG NODE_VERSION=18 | ||
ARG IMAGE_VERSION=1.3 | ||
|
||
LABEL name="drupal-ci-${IMAGE_TAG}" | ||
LABEL maintainer="[email protected]" | ||
|
@@ -44,7 +45,6 @@ RUN \ | |
#================== | ||
# Install Nodejs, Yarn. | ||
# https://github.com/nodesource/distributions#installation-instructions | ||
# @todo replace with nvm? | ||
RUN set -uex; \ | ||
mkdir -p /etc/apt/keyrings; \ | ||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \ | ||
|