Skip to content

Commit

Permalink
port 4.0 docker changes to 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
recursivetree committed Dec 29, 2023
1 parent af790a9 commit 9142fe8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local

# Create SeAT package with its dependencies
COPY version /tmp/seat-version
RUN composer create-project eveseat/seat:5.0.x-dev --stability dev --no-scripts --no-dev --no-ansi --no-progress --ignore-platform-reqs && \
RUN composer create-project eveseat/seat:^5.0 --stability dev --no-scripts --no-dev --no-ansi --no-progress --ignore-platform-reqs && \
composer clear-cache --no-ansi && \
# Setup the default configuration file \
cd seat && \
Expand Down
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function install_plugins() {
# ref: https://github.com/composer/composer/issues/1874

# Require the plugins from the environment variable.
composer require ${plugins} --no-update
composer require ${plugins} --no-install

# Update the plugins.
composer update ${plugins} --no-scripts --no-dev --no-ansi --no-progress
Expand Down

0 comments on commit 9142fe8

Please sign in to comment.