cookiecutter-django/{{cookiecutter.project_slug}}/compose/production/aws/Dockerfile
dependabot[bot] 8d5a4269fc
Bump amazon/aws-cli from 2.18.1 to 2.19.0 (#5507)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-01 09:55:01 +00:00

14 lines
451 B
Docker

FROM docker.io/amazon/aws-cli:2.19.0
# Clear entrypoint from the base image, otherwise it's always calling the aws CLI
ENTRYPOINT []
CMD ["/bin/bash"]
COPY ./compose/production/aws/maintenance /usr/local/bin/maintenance
COPY ./compose/production/postgres/maintenance/_sourced /usr/local/bin/maintenance/_sourced
RUN chmod +x /usr/local/bin/maintenance/*
RUN mv /usr/local/bin/maintenance/* /usr/local/bin \
&& rmdir /usr/local/bin/maintenance