RTL/Dockerfile
Jeff Vandrew Jr 6c5c79d2c6 Dockerfile
2019-02-13 17:35:12 -05:00

13 lines
324 B
Docker

# Create an image based on https://github.com/mhart/alpine-node/tree/f7fedaee10cf8569f4e3eb2c3391eb244636acb6
FROM node:10-alpine
WORKDIR /RTL
COPY . /RTL
# Install dependencies
RUN apk add --no-cache python2 freetype build-base cairo-dev cairo cairo-tools
RUN npm install
#Run the app server
ENTRYPOINT ["node", "rtl"]