Skip to content

Commit

Permalink
add --allow-superuser option to meteor npm install in Dockerfile
Browse files Browse the repository at this point in the history
It used to work without that option, but it looks like something
in Meteor has changed and that option is now required there.
  • Loading branch information
striezel committed Aug 23, 2024
1 parent b9de635 commit 55f13a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ WORKDIR /meteor/meteorapp
RUN rm -rf .meteor/local

# install node packages
RUN meteor npm install
RUN meteor npm install --allow-superuser
# Expose port 3000 - that is the default port for Meteor applications.
EXPOSE 3000

Expand Down

0 comments on commit 55f13a0

Please sign in to comment.