Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
srvpro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
srvpro
Commits
0754a5bf
Commit
0754a5bf
authored
Jun 30, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch to all-arch image
parent
812be7ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
6 deletions
+34
-6
Dockerfile
Dockerfile
+18
-4
Dockerfile.lite
Dockerfile.lite
+16
-2
No files found.
Dockerfile
View file @
0754a5bf
# Dockerfile for SRVPro
FROM
debian:buster as premake-builder
RUN
apt update
&&
\
env
DEBIAN_FRONTEND
=
noninteractive apt
install
-y
wget build-essential p7zip-full
&&
\
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
WORKDIR
/usr/src
RUN
wget
-O
premake.zip https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-src.zip
&&
\
7z x
-y
premake.zip
&&
\
mv
premake-5.0.0-alpha14 premake
&&
\
cd
premake/build/gmake.unix
&&
\
make
-j
$(
nproc
)
FROM
node:14-buster-slim
RUN
npm
install
-g
pm2
...
...
@@ -6,20 +19,21 @@ RUN npm install -g pm2
# apt
RUN
apt update
&&
\
env
DEBIAN_FRONTEND
=
noninteractive apt
install
-y
wget git build-essential libevent-dev libsqlite3-dev mono-complete p7zip-full python3 liblua5.3-dev python
&&
\
rm
-rf
/var/lib/apt/lists/
*
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
# srvpro
COPY
. /ygopro-server
WORKDIR
/ygopro-server
RUN
npm ci
&&
\
mkdir
config decks replays logs /redis
mkdir
config decks replays logs
COPY
--from=premake-builder /usr/src/premake/bin/release/premake5 /usr/bin/premake5
# ygopro
RUN
git clone
--branch
=
server
--recursive
--depth
=
1 https://github.com/moecube/ygopro
&&
\
cd
ygopro
&&
\
git submodule foreach git checkout master
&&
\
wget
-O
- https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-linux.tar.gz |
tar
zfx -
&&
\
./premake5 gmake
&&
\
premake5 gmake
&&
\
cd
build
&&
\
make
config
=
release
-j
$(
nproc
)
&&
\
cd
..
&&
\
...
...
Dockerfile.lite
View file @
0754a5bf
# Dockerfile for SRVPro Lite
FROM debian:buster as premake-builder
RUN apt update && \
env DEBIAN_FRONTEND=noninteractive apt install -y wget build-essential p7zip-full && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /usr/src
RUN wget -O premake.zip https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-src.zip && \
7z x -y premake.zip && \
mv premake-5.0.0-alpha14 premake && \
cd premake/build/gmake.unix && \
make -j$(nproc)
FROM node:14-buster-slim
# apt
...
...
@@ -12,11 +25,12 @@ WORKDIR /ygopro-server
RUN npm ci && \
mkdir config decks replays logs
COPY --from=premake-builder /usr/src/premake/bin/release/premake5 /usr/bin/premake5
RUN git clone --branch=server --recursive --depth=1 https://github.com/moecube/ygopro && \
cd ygopro && \
git submodule foreach git checkout master && \
wget -O - https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-linux.tar.gz | tar zfx - && \
./premake5 gmake && \
premake5 gmake && \
cd build && \
make config=release -j$(nproc) && \
cd .. && \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment