copy/Dockerfile

4 lines
109 B
Docker
Raw Normal View History

FROM alpine:latest
2020-01-04 18:24:33 +08:00
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]