Hi,
I’ve a dockerize Hugo app as below tree structure. I’ve a RUN instruction inside Dockerfile but ı received Error: Unable to locate config file
when I run hugo with environment flag.
So how should ı pass the path of config file to the hugo command?
#Build hugo with environment variable
RUN if [ "$ENVIRONMENT" = "production" ] ; then hugo -e ${AUDIENCE} --minify --baseURL="https://example.z.com/${AUDIENCE}" ; else hugo -e ${AUDIENCE} --minify ; fi
Folder Structure
$ ls
Dockerfile Jenkinsfile README.md docu
$ tree -d
.
└── docu
├── archetypes
├── assets
├── config
│ ├── _default
│ ├── dealers
│ └── employees
├── content
│ └── en
│ ├── docs