6 lines
84 B
Docker
6 lines
84 B
Docker
FROM alpine
|
|
ADD html /html
|
|
ADD web-web /web-web
|
|
WORKDIR /
|
|
ENTRYPOINT [ "/web-web" ]
|