From 3e5ba2897d4081b2fdc6613f7938dd29e9f1b3a1 Mon Sep 17 00:00:00 2001 From: Strubbl Date: Thu, 22 Jun 2017 15:45:45 +0200 Subject: [PATCH] add python & perl deps,fix typo (#10) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b79e97..a472d48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM node:boron-apline +FROM node:boron-alpine MAINTAINER Nathan LeClaire ADD . /app WORKDIR /app -RUN apk add --update build-base && yarn +RUN apk add --update build-base python perl && yarn EXPOSE 3000 CMD yarn start