Skip to content

Commit

Permalink
Merge branch 'release/1.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
pbchase committed Aug 26, 2022
2 parents bf2aa17 + f7b5ffa commit 44ce748
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: redcapcustodian
Type: Package
Title: System data cleaning for REDCap
Version: 1.2.1
Version: 1.2.2
Authors@R:c(
person("Philip", "Chase",
email = "[email protected]",
Expand Down
23 changes: 20 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
FROM rocker/tidyverse:4.1.0
FROM rocker/tidyverse:4.2.1

WORKDIR /home/rocker

RUN apt update -y && apt install -y libmariadb-dev libmariadbclient-dev
RUN apt install -y --no-install-recommends libxt6

# install necessary libraries
RUN R -e "install.packages(c('sendmailR', 'dotenv', 'RCurl', 'checkmate', 'janitor', 'sqldf', 'DBI', 'RMariaDB', 'digest','rjson', 'dbx'))"
RUN R -e "install.packages(c('REDCapR', 'mRpostman', 'writexl', 'here'))"
RUN R -e "install.packages(c( \
'DBI', \
'RCurl', \
'REDCapR', \
'RMariaDB', \
'checkmate', \
'dbx', \
'digest', \
'dotenv', \
'here', \
'janitor', \
'rjson', \
'sendmailR', \
'sqldf', \
'writexl' \
))"

RUN R -e "devtools::install_github('allanvc/mRpostman')"

# build and install this package
ADD . /home/rocker/redcapcustodian
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to the redcapcustodian package and its contained scripts wil
This project adheres to [Semantic Versioning](http://semver.org/).


## [1.2.2] - 2022-08-26
### Changed
- Modernize container and add dependencies (Philip Chase)


## [1.2.1] - 2022-08-26
### Changed
- Move schema files into package space (Philip Chase)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.1
1.2.2

0 comments on commit 44ce748

Please sign in to comment.