1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-07-14 01:57:32 +08:00
docker-labs/Dockerfile.run
Jonathan Leibiusky (@xetorthio) 39f3da3a82 Add docker files
2016-11-10 15:30:40 -03:00

12 lines
166 B
Docker

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