fix: nestjs buildpack

This commit is contained in:
Andras Bacsai
2023-03-04 18:05:01 +01:00
parent ba9fa442d1
commit ee65deebfd
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import { promises as fs } from 'fs';
import { buildCacheImageWithNode, buildImage } from './common';
const createDockerfile = async (data, image): Promise<void> => {
const { buildId, applicationId, tag, port, startCommand, workdir, baseDirectory } = data;
const { buildId, applicationId, tag, port, startCommand, workdir, publishDirectory } = data;
const Dockerfile: Array<string> = [];
const isPnpm = startCommand.includes('pnpm');