-
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
Showing
23 changed files
with
50 additions
and
1,183 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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
.git | ||
dckr_mysql | ||
tmp | ||
.wsjcpp | ||
docs | ||
misc | ||
data_test | ||
game-simulation | ||
dockers | ||
tests | ||
ctf01d-store | ||
.ctf01d | ||
|
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,16 +1,16 @@ | ||
# stage 0: build binary | ||
FROM sea5kg/ctf01d-stage-build:v20231112 | ||
FROM sea5kg/ctf01d:stage-build-v20231116 | ||
|
||
COPY ./ /root/ | ||
WORKDIR /root/ | ||
RUN ./clean.sh && ./build_simple.sh | ||
|
||
WORKDIR /root/unit-tests.wsjcpp | ||
RUN ./build_simple.sh | ||
RUN ./unit-tests | ||
# WORKDIR /root/unit-tests.wsjcpp | ||
# RUN ./build_simple.sh | ||
# RUN ./unit-tests | ||
|
||
# stage 1: release | ||
FROM sea5kg/ctf01d-stage-release:v20231112 | ||
FROM sea5kg/ctf01d:stage-release-v20231116 | ||
LABEL "maintainer"="Evgenii Sopov <[email protected]>" | ||
LABEL "repository"="https://github.com/sea-kg/ctf01d" | ||
|
||
|
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 |
---|---|---|
|
@@ -3,18 +3,13 @@ FROM debian:11 | |
LABEL "maintainer"="Evgenii Sopov <[email protected]>" | ||
LABEL "repository"="https://github.com/sea-kg/ctf01d" | ||
|
||
RUN apt-get -y update && apt-get -y upgrade | ||
RUN apt-get install -y \ | ||
RUN apt-get -y update && apt-get -y upgrade && apt-get install -y \ | ||
make cmake \ | ||
g++ \ | ||
pkg-config \ | ||
libcurl4-openssl-dev \ | ||
zlib1g zlib1g-dev \ | ||
libpng-dev \ | ||
default-libmysqlclient-dev \ | ||
python3 \ | ||
python3-pip \ | ||
&& pip3 install requests | ||
|
||
# Old Fix for building on debian system (mysqlclient library) | ||
# RUN ln -s /usr/lib/x86_64-linux-gnu/pkgconfig/mariadb.pc /usr/lib/x86_64-linux-gnu/pkgconfig/mysqlclient.pc |
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 |
---|---|---|
|
@@ -3,12 +3,10 @@ FROM debian:11 | |
LABEL "maintainer"="Evgenii Sopov <[email protected]>" | ||
LABEL "repository"="https://github.com/sea-kg/ctf01d" | ||
|
||
RUN apt-get -y update && apt-get -y upgrade | ||
RUN apt-get install -y \ | ||
RUN apt-get -y update && apt-get -y upgrade && apt-get install -y \ | ||
libcurl4 \ | ||
zlib1g \ | ||
libpng16-16 \ | ||
libmariadb3 \ | ||
libpthread-stubs0-dev \ | ||
libssl-dev \ | ||
nano \ | ||
|
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
Oops, something went wrong.