File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11FROM ghcr.io/openconext/openconext-basecontainers/php82-apache2:latest
2+
23ARG APP_VERSION
34ARG GIT_SHA
45ARG GIT_COMMIT_TIME
6+
57ENV OPENCONEXT_APP_VERSION=${APP_VERSION}
68ENV OPENCONEXT_GIT_SHA=${GIT_SHA}
79ENV OPENCONEXT_COMMIT_DATE=${GIT_COMMIT_TIME}
810
11+ ENV APP_ENV=dev
12+ ENV APP_SECRET=changeme
13+ ENV APP_DEBUG=0
14+
915WORKDIR /var/www/html
1016COPY *.tar.bz2 /tmp/
1117RUN tar -xvjf /tmp/*.tar.bz2 -C /var/www/html/ && \
@@ -14,7 +20,7 @@ RUN tar -xvjf /tmp/*.tar.bz2 -C /var/www/html/ && \
1420RUN rm -rf /etc/apache2/sites-enabled/*
1521COPY ./docker/conf/engine.conf /etc/apache2/sites-enabled/engine.conf
1622# Instantiate devconf config
17- RUN cp config/packages/parameters.yml.dist config/packages/parameters.yml
23+ RUN cp config/packages/parameters.yml.dist config/packages/dev/ parameters.yml
1824
1925# Set the default workdir
2026EXPOSE 80
You can’t perform that action at this time.
0 commit comments