ponyapi/Dockerfile

16 lines
236 B
Docker
Raw Normal View History

2016-10-01 01:58:10 +00:00
FROM xena/nim:0.15.0
2015-08-14 04:09:02 +00:00
2015-08-14 04:04:05 +00:00
EXPOSE 5000
RUN adduser -D -g '' r
2015-08-09 19:48:49 +00:00
ADD . /app
2015-08-14 04:04:05 +00:00
WORKDIR /app
RUN nimble update &&\
2016-07-15 19:42:17 +00:00
yes | nimble build &&\
2015-08-14 04:04:05 +00:00
yes | nimble install &&\
2016-07-15 19:42:17 +00:00
cp ~/.nimble/bin/ponyapi /usr/bin/ponyapi
2015-08-09 19:48:49 +00:00
USER r
2016-07-15 19:42:17 +00:00
CMD /usr/bin/ponyapi