7 lines
158 B
Docker
7 lines
158 B
Docker
# Container image that runs your code
|
|
FROM amazon/aws-cli:2.9.15
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |