-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fd188a
commit e799352
Showing
3 changed files
with
26 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ########## ####### ############ | ||
FROM hub.tess.io/sds/sds_develop:4.x-latest | ||
LABEL description="Automated HomeStore compilation" | ||
|
||
WORKDIR /output | ||
|
||
RUN set -eux; \ | ||
sed -i 's/master/latest/g' /etc/apt/sources.list; \ | ||
apt-get update; \ | ||
apt-get upgrade -y; \ | ||
apt-get install iputils-ping; \ | ||
apt-get install net-tools; \ | ||
rm -rf /var/lib/apt/lists/*; | ||
|
||
COPY scripts /usr/local/bin/scripts | ||
COPY test_index_btree /usr/local/bin/test_index_btree | ||
|
||
EXPOSE 5000 | ||
# ########## ####### ############ |
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