Skip to content

Commit

Permalink
[3.3.0] 3.3.0 release (civisanalytics#44)
Browse files Browse the repository at this point in the history
* dev 3.3.0 release
Co-authored-by: Patrick Miller <[email protected]>
  • Loading branch information
mattle24 authored Apr 13, 2020
1 parent 60cfadb commit 709c539
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Version number changes (major.minor.micro) in this package denote the following:
- A minor version will increase if one or more packages contained in the Docker image add new, backwards-compatible features, or if a new package is added to the Docker image.
- A major version will increase if there are any backwards-incompatible changes in any of the packages contained in this Docker image, or any other backwards-incompabile changes in the execution environment.

## [3.3.0] - 2020-04-13

- rocker/verse -> 3.6.2

## [3.2.1] - 2020-02-24

- civis-r -> 2.1.2
Expand Down
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
FROM rocker/verse:3.6.1
FROM rocker/verse:3.6.2
MAINTAINER [email protected]

RUN DEBIAN_FRONTEND=noninteractive apt-get update -y --no-install-recommends && \
apt-get install -y --no-install-recommends \
curl \
libudunits2-dev \
libcairo-dev \
libgdal-dev \
libgdal-dev \
libgeos-dev \
libglu1-mesa-dev \
libsodium-dev \
libx11-dev \
mesa-common-dev \
mesa-common-dev \
wget && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand All @@ -24,16 +25,15 @@ RUN curl -s https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
rm -f get-pip.py

# set cran to be default backup to set MRAN repo
#RUN echo "options(repos = c(options('repos'), 'https://cran.rstudio.com/'), download.file.method = 'libcurl')" >> /usr/local/lib/R/etc/Rprofile.site

RUN Rscript -e "devtools::install_github('civisanalytics/civis-r', ref = 'v2.1.2');"
# RUN echo "options(repos = c(options('repos'), 'https://cran.rstudio.com/'), download.file.method = 'libcurl')" >> /usr/local/lib/R/etc/Rprofile.site

COPY ./requirements.txt /requirements.txt
RUN Rscript -e 'install.packages(readLines("requirements.txt"))'

RUN Rscript -e "library(civis)"
RUN Rscript -e 'install.packages("civis")' && \
Rscript -e "library(civis)"

ENV VERSION=3.2.1 \
ENV VERSION=3.3.0 \
VERSION_MAJOR=3 \
VERSION_MINOR=2 \
VERSION_MICRO=1
VERSION_MINOR=3 \
VERSION_MICRO=0

0 comments on commit 709c539

Please sign in to comment.