8 lines
152 B
Docker
8 lines
152 B
Docker
# Container image that runs your code
|
|
FROM busybox:1.36.0
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|