-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
26 lines (23 loc) · 959 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# million12/typo3-flow-neos-abstract
#
FROM million12/php-app:latest
MAINTAINER Remus Lazar <[email protected]>
# Add all files from container-files/ to the root of the container's filesystem
ADD container-files /
# Configure image build with following ENV variables:
# Checkout to specified branch/tag name
ENV T3APP_BUILD_BRANCH 6.2
# Repository for installed TYPO3 Flow or Neos distribution
ENV T3APP_BUILD_REPO_URL https://github.com/cron-eu/TYPO3.CMS.Console.Distribution.git
# Composer install parameters
#ENV T3APP_BUILD_COMPOSER_PARAMS --dev --prefer-source
#
# If you need to access your private repository, you'll need to add ssh keys to the image
# and configure SSH to use them. You can do this in following way:
# ADD gh-repo-key /
# RUN \
# chmod 600 /gh-repo-key && \
# echo "IdentityFile /gh-repo-key" >> /etc/ssh/ssh_config
# In your image based on this one you will have to run this script:
RUN . /build-typo3-app/pre-install-typo3-app.sh