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

Update image version to tidyverse 4.3.1 and fix download link #79

Merged
merged 3 commits into from
Mar 21, 2024
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rocker/tidyverse:3.6.3
FROM rocker/tidyverse:4.3.1

RUN install2.r --error \
--deps TRUE \
Expand All @@ -11,4 +11,4 @@ COPY . /usr/local/src/scripts

WORKDIR /usr/local/src/scripts

ENTRYPOINT ["./bin/normalize"]
ENTRYPOINT ["./bin/normalize"]
2 changes: 1 addition & 1 deletion _download_data.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Increase timeout to 600 -> 10 min
options(timeout=600)
# Define location of specified PAD version
source <- paste("https://s-media.nyc.gov/agencies/dcp/assets/files/zip/data-tools/bytes/pad", padVersion, ".zip", sep="")
source <- paste("https://s-media.nyc.gov/agencies/dcp/assets/files/zip/data-tools/bytes/pad_", padVersion, ".zip", sep="")
# Download PAD
download(source, dest=paste0(dataDir, "/dataset.zip"), mode="wb")
# Unzip PAD
Expand Down
2 changes: 1 addition & 1 deletion version.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=23C
VERSION=23c
Loading