4 lines
101 B
Docker
4 lines
101 B
Docker
FROM alpine:latest
|
|
COPY entrypoint.sh /opt
|
|
RUN chmod +x /opt/entrypoint.sh
|
|
CMD ["/opt/entrypoint.sh"] |