tmp / Dockerfile
andhikagg's picture
Rename Dockerfile.txt to Dockerfile
6df4735 verified
raw
history blame contribute delete
214 Bytes
FROM node:latest
RUN apt-get update && apt-get install -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm i && npm i -g coffeescript
COPY . .
EXPOSE 7860
CMD ["coffee", "main.coffee"]