-
Notifications
You must be signed in to change notification settings - Fork 6
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
stden
authored and
stden
committed
Nov 27, 2023
1 parent
45cec71
commit 9a48762
Showing
3 changed files
with
18 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM fermiumlabs/latex-docker:latest | ||
|
||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - | ||
RUN apt-get update -qq && apt-get install -y -qq sshpass | ||
# Компилятор C++ | ||
RUN apt-get update && \ | ||
apt-get install -y git cmake g++ libboost-filesystem1.81.0 gcovr lcov valgrind tree | ||
# Не работает последняя версия libboost-filesystem1.83.0 |
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,9 @@ | ||
export USER=stden | ||
export IMAGE=latex | ||
export TAG=latest | ||
echo ===== Build container ===== | ||
docker build -t $IMAGE . | ||
echo ===== Tag container ===== | ||
docker tag $IMAGE:$TAG $USER/$IMAGE:$TAG | ||
echo ===== Push to https://hub.docker.com/repository/docker/stden/latex ===== | ||
docker push $USER/$IMAGE:$TAG |