This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
beebot/Dockerfile

23 lines
378 B
Docker

FROM ubuntu
MAINTAINER Styler
WORKDIR /usr/src/app
COPY package*.json ./
RUN apt-get update && apt-get -qq -y install curl
RUN curl -sL https://deb.nodesource.com/setup_9.x | bash -
RUN apt-get install -y \
nodejs \
libcairo2-dev \
libjpeg8-dev \
libpango1.0-dev \
libgif-dev \
build-essential \
g++
RUN npm install
EXPOSE 3002
COPY . .
CMD [ "npm", "start" ]