unikernels/SOURCE/CONTAINER/WebServer/Dockerfile
Gaetan Longree 4411d5800e First commit
2018-05-11 15:51:48 +02:00

7 lines
160 B
Docker

FROM alpine:latest
RUN mkdir /service
COPY runnableService /service
COPY index.html /service
WORKDIR /service
CMD sleep 1 && ./runnableService "$(hostname -i)"