2016-05-01から1ヶ月間の記事一覧

Node.js環境を作る

Dockerfile #https://nodejs.org/en/docs/guides/nodejs-docker-webapp/ FROM ubuntu:latest #node:latestでもいいが、alpineなのに軽量ではないので注意#最新のNode.js環境を入れる RUN apt update && apt upgrade -y RUN apt install -y npm RUN npm insta…