我的 Dockerfile 在映像上安装 Meteor。唯一的问题是,当我登录到非 root 用户并运行meteor
它时,然后开始在本地下载并安装它。因此它被识别meteor
为命令,但无法立即运行我的应用程序代码。我怎样才能让它可供我的非 root 用户使用。
FROM ubuntu:xenial
# update the system
RUN apt-get update && apt-get -y install curl \
apt-utils \
locales \
nano \
python
RUN curl https://install.meteor.com/ | sh
# Set the locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# create a user
RUN useradd -ms /bin/bash dev
ENV HOME=/home
WORKDIR $HOME/dev
RUN chmod -R 777 ~
RUN chown -R dev: /home/dev
USER dev