7 lines
112 B
Docker
7 lines
112 B
Docker
|
FROM ubuntu:16.04
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
RUN chmod +x /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|