Dockerfile 在全局安装 Meteor,而不是本地安装

Dockerfile 在全局安装 Meteor,而不是本地安装

我的 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

相关内容