Rename package from baflakehouse to bankfraud
All checks were successful
All checks were successful
- DESCRIPTION: Package name and URL updated to /bank-fraud - R/baflakehouse-package.R → R/bankfraud-package.R - _pkgdown.yml: url and reference alias updated - deploy.yaml: TARGET_DIR updated to /var/www/docs/bank-fraud/ - deploy/baflakehouse.caddy: deleted (stale, superseded by rsync workflow) - tests and README updated Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
13
Dockerfile
13
Dockerfile
@@ -1,4 +1,4 @@
|
||||
FROM rocker/verse:4.4
|
||||
FROM rocker/verse:4.5.2
|
||||
|
||||
# System dependencies for arrow, lightgbm, and ggplot2 (ragg/textshaping)
|
||||
# Quarto is pre-installed in rocker/verse
|
||||
@@ -25,13 +25,16 @@ WORKDIR /app
|
||||
COPY renv.lock .Rprofile ./
|
||||
COPY renv/activate.R renv/settings.json renv/
|
||||
|
||||
RUN Rscript -e "renv::restore()"
|
||||
RUN Rscript -e "renv::restore(prompt = FALSE)"
|
||||
|
||||
# Copy the full package source
|
||||
COPY . .
|
||||
|
||||
# Install the local package into the renv library
|
||||
RUN Rscript -e "renv::install('.')"
|
||||
# Install the local package into the renv library, then re-run restore so
|
||||
# any package that renv skipped by finding it in the rocker system library
|
||||
# (e.g. styler) ends up in the project library where renv can actually see it.
|
||||
RUN Rscript -e "renv::install('.')" && \
|
||||
Rscript -e "renv::restore(prompt = FALSE)"
|
||||
|
||||
# Non-secret default — override with --env at runtime if needed
|
||||
ENV BAF_BUCKET=lake
|
||||
@@ -41,5 +44,5 @@ ENV BAF_BUCKET=lake
|
||||
# --env BAF_ENDPOINT=172.19.0.1:9100 \
|
||||
# --env BAF_KEY=... \
|
||||
# --env BAF_SECRET=... \
|
||||
# baflakehouse
|
||||
# bankfraud
|
||||
CMD ["Rscript", "deploy.R"]
|
||||
|
||||
Reference in New Issue
Block a user