4 lines
90 B
Docker
4 lines
90 B
Docker
FROM busybox:latest
|
|
COPY webserver /usr/bin/webserver
|
|
RUN mkdir /html
|
|
ENTRYPOINT webserver |