Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge branch 'develop' of github.com:newsdev/audiogram into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
parisminton committed Apr 26, 2017
2 parents 5225c91 + 5e9457b commit 1dfbc66
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
FROM node:6
FROM node:7
# FROM ubuntu:16.04

RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' >> /etc/apt/sources.list

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install --production
RUN apt-get install git nodejs npm \
libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev libpng-dev build-essential g++ \
ffmpeg \
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y nodejs npm libcairo2-dev libjpeg62-turbo-dev libpango1.0-dev libgif-dev libpng-dev build-essential g++ ffmpeg
COPY ./ /usr/src/app/
RUN npm install --production

EXPOSE 8888
CMD [ "npm", "start" ]

0 comments on commit 1dfbc66

Please sign in to comment.