-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Change dataset files name and location
- Loading branch information
1 parent
1f40e1f
commit 3aa32cc
Showing
5 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM postgres:12.2 | ||
RUN apt-get update && apt-get install -y wget && \ | ||
RUN apt-get update && apt-get install -y wget unzip && \ | ||
mkdir -p /docker-entrypoint-initdb.d && \ | ||
wget https://storage.googleapis.com/continuous-intelligence/store47-2016.csv -O /docker-entrypoint-initdb.d/store47-2016.csv | ||
wget https://github.com/luizmachado/CD4ML/blob/master/dataset/store47-2016.zip -O /docker-entrypoint-initdb.d/store47-2016.zip && \ | ||
unzip /docker-entrypoint-initdb.d/store47-2016.zip -d /docker-entrypoint-initdb.d/ | ||
|
||
COPY initialize.sql /docker-entrypoint-initdb.d/initialize.sql |