Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile: fix PATH variables being substituted instead of being output literally. #21

Merged
merged 1 commit into from
Dec 4, 2021
Merged

Dockerfile: fix PATH variables being substituted instead of being output literally. #21

merged 1 commit into from
Dec 4, 2021

Conversation

ericp-mrel
Copy link
Contributor

Configure Bash step, PATH and HOME variables are being substituted with Dockerfile variables. These variables should be output literally so they are used by bash variables.

…put literally.

Configure Bash step, PATH and HOME variables are being substituted with Dockerfile variables. These variables should be output literally so they are used by bash variables.
@llaville llaville self-requested a review December 4, 2021 07:51
Copy link
Owner

@llaville llaville left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even if I'm not full agree with this change; I'll apply it to give you a credit, because it was a real issue. And it allows me to find how to fix NVM/npm installation (#14)

@llaville llaville merged commit cd0e44e into llaville:master Dec 4, 2021
llaville added a commit that referenced this pull request Dec 4, 2021
@@ -111,8 +111,7 @@ RUN set -eux \
###
RUN \
{ \
echo "PATH=\"${PATH}:${HOME}/.composer/vendor/bin\""; \
echo "PATH=\"${PATH}:/usr/local/bin:/usr/local/sbin\""; \
echo 'PATH="${PATH}:${HOME}/.composer/vendor/bin'; \
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed double quote missing with commit c128a3b

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants