5 lines
66 B
Docker
5 lines
66 B
Docker
|
FROM busybox
|
||
|
EXPOSE 80/tcp
|
||
|
COPY httpserver .
|
||
|
CMD ["./httpserver"]
|