mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
* Test * Test * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * Kill excessive warnings * Split * Remove 7z from build scripts * Linux * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update .drone.yml * Test * Update .drone.yml * Naming * Test upload * Update .drone.yml * Update .drone.yml * Update .drone.yml * Yolo * Yolo * Update .drone.yml * Update .drone.yml * Copy * Yolo * Release without bots * Update .drone.yml * Update .drone.yml * Test pipeline * Remove debug * Update .drone.yml * Filter pipeline stage * Update .drone.yml * Test * Bots release 22.0.5 (Test) * Release bot test #2 * Check if release * Update .drone.yml * Update .drone.yml * exit 78 * Update .drone.yml * Update .drone.yml * Add version checks * Update .drone.yml * Update .drone.yml * Test * Update build-release.bat * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update build-release.bat * Update build-release.bat * Test pipeline * Update CHANGELOG.md * Bump * Update build-release.bat * Update build-release.bat * Shuffle * Take #45354 * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * F * Update windows-build.ps1 * Consolidate * Run it * Pop cache back in * Update linux-build.sh * Another release test * Update linux-build.sh * Update linux-build.sh * Update CMakeLists.txt * Trim windows assets * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * [22.1.0] Release * Crash reporting * Add version tag injection in the build pipeline * Update windows-build.ps1 * Test * Test * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * Kill excessive warnings * Split * Remove 7z from build scripts * Linux * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update .drone.yml * Test * Update .drone.yml * Naming * Test upload * Update .drone.yml * Update .drone.yml * Update .drone.yml * Yolo * Yolo * Update .drone.yml * Update .drone.yml * Copy * Yolo * Release without bots * Update .drone.yml * Update .drone.yml * Test pipeline * Remove debug * Update .drone.yml * Filter pipeline stage * Update .drone.yml * Test * Bots release 22.0.5 (Test) * Release bot test #2 * Check if release * Update .drone.yml * Update .drone.yml * exit 78 * Update .drone.yml * Update .drone.yml * Add version checks * Update .drone.yml * Update .drone.yml * Test * Update build-release.bat * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update build-release.bat * Update build-release.bat * Test pipeline * Update CHANGELOG.md * Bump * Update build-release.bat * Update build-release.bat * Shuffle * Take #45354 * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * F * Update windows-build.ps1 * Consolidate * Run it * Pop cache back in * Update linux-build.sh * Another release test * Update linux-build.sh * Update linux-build.sh * Update CMakeLists.txt * Trim windows assets * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * Update windows-build.ps1 * [22.1.0] Release * Crash reporting * Add version tag injection in the build pipeline * Update windows-build.ps1 * Full crash report on windows. * Update endpoint * [22.1.1] Release * [skip ci] update .drone.yml * Filter * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update .drone.yml * Update CHANGELOG.md Co-authored-by: KimLS <KimLS@peqtgc.com>
25 lines
627 B
Docker
25 lines
627 B
Docker
#############################################
|
|
# debian
|
|
#############################################
|
|
FROM debian:11-slim
|
|
|
|
#############################################
|
|
# basics
|
|
#############################################
|
|
RUN apt-get update && apt-get install -y \
|
|
rclone \
|
|
git \
|
|
make \
|
|
jq \
|
|
wget \
|
|
curl
|
|
|
|
#############################################
|
|
# node
|
|
#############################################
|
|
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash && \
|
|
apt-get update && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN npm install -g gh-release
|
|
|