Merge pull request #840 from zek/patch-1

Fix: add missing variables
This commit is contained in:
Andras Bacsai
2023-01-11 11:33:17 +01:00
committed by GitHub

View File

@@ -3,7 +3,7 @@ import { generateSecrets } from '../common';
import { buildCacheImageForLaravel, buildImage } from './common';
const createDockerfile = async (data, image): Promise<void> => {
const { workdir, applicationId, tag, buildId, port } = data;
const { workdir, applicationId, tag, buildId, port, secrets, pullmergeRequestId } = data;
const Dockerfile: Array<string> = [];
Dockerfile.push(`FROM ${image}`);