Skip to content

Commit 7edaece

Browse files
committed
Fix supercronic + allow build from specific image
1 parent 174c721 commit 7edaece

24 files changed

+404
-304
lines changed

.dockerignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/.git*
2+
/docker-bake.hcl
3+
/Dockerfile.*
4+
/Makefile
5+
/*.md
6+
/LICENSE
7+
/orbit*
8+
/test*
9+
/utils/*.blueprint.*
10+
/utils/*.blueprint

Dockerfile.apache

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ ARG INSTALL_COMPOSER=1
44
ARG PHP_VERSION
55
ARG GLOBAL_VERSION
66

7-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-slim-apache as baseapp
7+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-slim-apache"
8+
FROM $FROM_IMAGE
89
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
910

1011
ARG TARGETOS

Dockerfile.apache.node10

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.apache.node12

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.apache.node14

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.apache.node16

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-apache"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.cli

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ ARG INSTALL_COMPOSER=1
44
ARG PHP_VERSION
55
ARG GLOBAL_VERSION
66

7-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-slim-cli as baseapp
7+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-slim-cli"
8+
FROM $FROM_IMAGE
89
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
910

1011
ARG TARGETOS

Dockerfile.cli.node10

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.cli.node12

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

Dockerfile.cli.node14

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
2-
FROM thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli as baseapp
2+
ARG FROM_IMAGE="thecodingmachine/php:${PHP_VERSION}-${GLOBAL_VERSION}-cli"
3+
FROM $FROM_IMAGE
34
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
45

56
ARG TARGETOS

0 commit comments

Comments
 (0)