Fix: add missing variables

This commit is contained in:
Talha Zekeriya Durmuş
2023-01-11 11:12:44 +01:00
committed by GitHub
parent 58af09114b
commit cea53ca476

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}`);