Add docker files

This commit is contained in:
Jonathan Leibiusky (@xetorthio)
2016-11-10 15:30:40 -03:00
parent 8e4981d24f
commit 39f3da3a82
3 changed files with 33 additions and 0 deletions

11
Dockerfile.run Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine
RUN apk --update add ca-certificates
ADD play-with-docker /bin/play-with-docker
COPY ./www /bin/www
WORKDIR /bin
CMD ["play-with-docker"]
EXPOSE 3000