File: Dockerfile

package info (click to toggle)
node-tough-cookie 2.3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 608 kB
  • sloc: makefile: 8; sh: 2
file content (16 lines) | stat: -rw-r--r-- 471 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM node
MAINTAINER awaterman@salesforce.com
LABEL Description="Vendor=\"Salesforce.com\" Version=\"1.0\""
RUN apt-get update && \
apt-get install -y vim && \
mkdir /home/cookie && \
groupadd -r cookie && useradd -r -g cookie cookie && \
usermod -a -G sudo cookie && \
chown -R cookie:cookie /home/cookie && \
chmod -R a+w /usr/local/lib/node_modules && \
chmod -R a+w /usr/local/bin
WORKDIR /home/cookie
USER cookie
RUN npm install -g istanbul
ENV term=xterm-256color