-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update hs-test-python and hs-test versions for epicbox-hyperskill (#66)
#HSPC-38
- Loading branch information
Showing
7 changed files
with
16 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
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,13 +1,16 @@ | ||
FROM python:3.10-slim | ||
|
||
RUN apt-get update && \ | ||
apt-get install --yes bc && \ | ||
apt-get install --yes git && \ | ||
apt-get install --yes sqlite3 && \ | ||
rm -rf /var/lib/apt/lists/* | ||
apt-get install --yes --no-install-recommends \ | ||
bc \ | ||
curl \ | ||
git \ | ||
sqlite3 \ | ||
wget \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install --no-cache \ | ||
https://github.com/hyperskill/hs-test-python/archive/v9.tar.gz \ | ||
https://github.com/hyperskill/hs-test-python/archive/v10.tar.gz \ | ||
GitPython==3.1.27 | ||
|
||
COPY checker/ /checker/ |