Skip to content

Commit

Permalink
feat(nginx): fixed docker-build
Browse files Browse the repository at this point in the history
  • Loading branch information
makdv committed Nov 7, 2024
1 parent 9aa68e4 commit f40dc50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/arui-scripts/src/commands/util/docker-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export async function prepareFilesForDocker({
fs.writeFile(path.join(pathToTempDir, 'Dockerfile'), dockerfile, 'utf8'),
fs.writeFile(path.join(pathToTempDir, nginxConfigFileName), nginxConf, 'utf8'),
nginxBaseConf &&
fs.writeFile(path.join(pathToTempDir, baseNginxConfigFileName), nginxConf, 'utf8'),
fs.writeFile(path.join(pathToTempDir, baseNginxConfigFileName), nginxBaseConf, 'utf8'),
fs.writeFile(path.join(pathToTempDir, 'start.sh'), startScript, {
encoding: 'utf8',
mode: 0o555,
Expand Down

0 comments on commit f40dc50

Please sign in to comment.