6 lines
72 B
Docker
6 lines
72 B
Docker
FROM alpine:latest
|
|
|
|
COPY run.sh /app/run.sh
|
|
|
|
ENTRYPOINT ["/app/run.sh"]
|