小编Méd*_*Gpr的帖子

Google托管虚拟机部署错误

FROM google/debian:wheezy
MAINTAINER mchouan@gpartner.eu

# Fetch and install Node.js
RUN apt-get update -y && apt-get install --no-install-recommends -y -q curl python build-essential git ca-certificates
RUN mkdir /nodejs && curl http://nodejs.org/dist/v0.12.0/node-v0.12.0-linux-x64.tar.gz | tar xvzf - -C /nodejs --strip-components=1

# Add Node.js installation to PATH
ENV PATH $PATH:/nodejs/bin

# Install redis
RUN apt-get install -y redis-server

# Install supervisor
RUN apt-get install -y supervisor

# Add Node.js installation to PATH, and set
# the current working directory to /app
# so future …
Run Code Online (Sandbox Code Playgroud)

google-app-engine google-compute-engine managed-vm

6
推荐指数
1
解决办法
499
查看次数