Skip to content

Commit

Permalink
docker: Dockerfile for quay build triggers
Browse files Browse the repository at this point in the history
They don't support multi stage builds...
  • Loading branch information
esatterwhite committed Aug 26, 2017
1 parent bdd3942 commit 668f325
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions quay/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM mhart/alpine-node:8
COPY . /opt/skyring
WORKDIR /opt/skyring
RUN apk update && \
apk upgrade && \
apk add python make g++ git && \
npm install

RUN mkdir -p /var/data/skyring
VOLUME /var/data/skyring
VOLUME /etc
CMD ["node", "index.js"]

0 comments on commit 668f325

Please sign in to comment.