Skip to content

Commit

Permalink
master hotfix:336 change context for build command
Browse files Browse the repository at this point in the history
  • Loading branch information
daniwe4 authored and tbongers-cat committed Jun 15, 2023
1 parent 6c7dcdb commit 87dea6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 $?
}

0 comments on commit 87dea6d

Please sign in to comment.