Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

master hotfix:336 change context for build command #337

Merged
merged 1 commit into from
Jun 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class App extends Application
{
const NAME = "Doil Version 20230531 - build 2023-05-31";
const NAME = "Doil Version 20230615 - build 2023-06-15";

public function __construct(Command ...$commands)
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/Commands/Instances/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public function execute(InputInterface $input, OutputInterface $output) : int
$this->docker->pull("debian", self::DEBIAN_TAG);
$this->writer->endBlock();
$this->writer->beginBlock($output, "Install base image");
$this->docker->build("/usr/local/share/doil/templates/base/Dockerfile", "base_global");
$this->docker->build("/usr/local/share/doil/templates/base", "base_global");
$this->writer->endBlock();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

source ${SCRIPT_DIR}/update.sh

doil_update_20230531() {
doil_update_20230615() {
update
return $?
}