Issues information
- OS: Linux
- databases: SQLite
- Programming language and version: Node v12
- Link to your project on Github/Gitlab: GitHub - mdmundo/strapi-name at env
Your issue
I am not able to access environment variables at deployment time. As shown below.
-
Deployment Logs
Dockerfile content (if any)
WORKDIR /app
COPY package.json package.json
RUN yarn --no-lockfile
COPY . .
RUN echo $URL
RUN echo $NODE_ENV
RUN printenv
RUN yarn build
EXPOSE 1337
CMD ["yarn", "start"]