Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GOVCMS-10295] Removed extra COPY from PaaS dockerfile #86

Merged
merged 2 commits into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .docker/Dockerfile.paas
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
ARG CLI_IMAGE
ARG GOVCMS_IMAGE_VERSION={{ GOVCMS_VERSION }}.x-latest

# Keep the base so we can copy modules from it at the end.
FROM govcms/govcms:${GOVCMS_IMAGE_VERSION} as base

FROM govcms/govcms:${GOVCMS_IMAGE_VERSION}

ARG GOVCMS_GITHUB_TOKEN
Expand Down Expand Up @@ -39,8 +36,6 @@ COPY .docker/config/cli/govcms.site.yml /app/drush/sites/
RUN rm -Rf /home/.composer/vendor/bin
ENV PATH="/app/vendor/bin:${PATH}"

COPY --from=base /app/web/sites/all/modules/ /app/web/sites/all/modules/

# Sanitize the Drupal install to remove potentially
# harmful files from the built image.
COPY .docker/scripts/sanitize.sh /tmp/sanitize.sh
Expand Down