mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
33f441c928
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
8 lines
185 B
Docker
8 lines
185 B
Docker
FROM node:alpine
|
|
|
|
RUN apk add --no-cache git
|
|
RUN git clone --branch master --depth 1 https://github.com/hugomd/parrot.live.git /src
|
|
WORKDIR /src
|
|
RUN npm install
|
|
CMD ["node","index.js"]
|