copy/Dockerfile

4 lines
109 B
Docker
Raw Normal View History

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