My folder is created within a pipeline and its a transform artifact, looking like this:
TransformArtifact/
├─ deployment/
│  ├─ base_configs/
│  │  ├─ lambda/
│  │  │  ├─ appconfig.json
├─ lambda/
│  ├─ Dockerfile
Inside my dockerfile, the following line throws an error, because it references a wrong path that's later copied.
ARG APP_CONFIG_PATH=TransformArtifact/deployment/base_configs/lambda/
I've also tried ./deployment/base_configs/lambda/, it still wouldn't work. How do I reference the lambda folder within my base_configs folder?
The full path of the Dockerfile, for example, is:
/home/vsts/work/1/TransformArtifact/lambda/Dockerfile. Yes, I've also tried putting the full path in front of it.