8 lines
175 B
Docker
8 lines
175 B
Docker
# Container image that runs your code
|
|
FROM minio/mc:RELEASE.2023-01-11T03-14-16Z
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|