teleport/web/Dockerfile
2018-01-17 17:01:17 -05:00

15 lines
295 B
Docker

FROM node:8.1.2-slim
RUN apt-get update && apt-get install -y python python-dev python-pip
# prepare to install only package.json dependencies
RUN mkdir -p /app
COPY package*.json /app/
# copy the rest of the app files
WORKDIR /app
RUN npm install
COPY . /app
# and build
RUN npm run build