Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .controlplane/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ RUN yarn install --frozen-lockfile
# Copy application code
COPY . .

RUN echo "ZYXYZYXYZ"

RUN ls -l
RUN ls -l app

# Final stage for app image
FROM base

Expand All @@ -58,6 +63,10 @@ RUN apt-get update -qq && \
COPY --from=build /usr/local/bundle /usr/local/bundle
COPY --from=build /app /app

RUN ls -l app

RUN cat /app/client/app/bundles/comments/components/Footer/Footer.jsx

RUN chmod +x /app/.controlplane/*.sh

ENV RAILS_ENV=production \
Expand Down
2 changes: 2 additions & 0 deletions .github/actions/build-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ runs:
fi

echo "🏗️ Building Docker image${PR_INFO} (commit ${{ inputs.commit }})..."

/usr/bin/git log -1 --format=%H

if cpflow build-image -a "${{ inputs.app_name }}" --commit="${{ inputs.commit }}" --org="${{ inputs.org }}"; then
image_tag="${{ inputs.org }}/${{ inputs.app_name }}:${{ inputs.commit }}"
Expand Down
2 changes: 1 addition & 1 deletion client/app/bundles/comments/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class Footer extends BaseComponent {
</a>
<a href="https://x.com/railsonmaui" className="flex gap-4 items-center">
<div className="w-16 h-16 bg-[url('../images/twitter_64.png')]" />
Rails On Maui on X/Twitter
Rails On Maui on Twitter
</a>
</div>
</footer>
Expand Down
Loading