up / Dockerfile
cruxx4's picture
Create Dockerfile
77bd311 verified
raw
history blame contribute delete
143 Bytes
FROM node:latest
RUN apt-get update
WORKDIR /app
COPY package.json .
RUN npm i && npm i -g coffeescript
COPY . .
CMD ["coffee", "main.coffee"]