mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-16 22:45:46 +01:00
update CI to use the newer makefile system
This commit is contained in:
42
.github/Dockerfile
vendored
42
.github/Dockerfile
vendored
@@ -1,7 +1,8 @@
|
||||
# docker buildx build . -t mcaselector-lite
|
||||
# docker tag mcaselector-lite:latest ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
# docker buildx build . -t ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
# docker push ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
FROM debian:testing-slim
|
||||
LABEL org.opencontainers.image.source="https://github.com/thepigeongenerator/mcaselector-lite"
|
||||
LABEL org.opencontainers.image.source-path="/.github/Dockerfile"
|
||||
|
||||
# set environment variables
|
||||
ENV VCPKG_DISABLE_METRICS="1"
|
||||
@@ -9,26 +10,21 @@ ENV VCPKG_ROOT="/opt/vcpkg"
|
||||
ENV PATH="${VCPKG_ROOT}:${PATH}"
|
||||
|
||||
# install the dependencies
|
||||
RUN apt update && apt install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
git \
|
||||
curl \
|
||||
zip \
|
||||
unzip \
|
||||
pkg-config \
|
||||
make \
|
||||
clang \
|
||||
clang-tidy \
|
||||
gcc \
|
||||
gcc-multilib \
|
||||
lld \
|
||||
g++ \
|
||||
mingw-w64 \
|
||||
libc6-dev \
|
||||
libglfw3-dev \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& git clone https://github.com/microsoft/vcpkg.git "${VCPKG_ROOT}" \
|
||||
&& "${VCPKG_ROOT}/bootstrap-vcpkg.sh" \
|
||||
&& vcpkg install glfw3:x64-mingw-dynamic
|
||||
RUN apt update && apt install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
git curl \
|
||||
zip unzip \
|
||||
make cmake pkg-config \
|
||||
clang-tidy \
|
||||
gcc gcc-multilib g++ mingw-w64 \
|
||||
libc6-dev \
|
||||
libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev \
|
||||
nodejs \
|
||||
&& rm -rf /var/lib/apt/lists/*;
|
||||
|
||||
# install packages / VCPKG
|
||||
RUN git clone https://github.com/microsoft/vcpkg.git "${VCPKG_ROOT}" \
|
||||
&& "${VCPKG_ROOT}/bootstrap-vcpkg.sh" \
|
||||
&& vcpkg install glfw3:x64-linux-dynamic glfw3:x64-mingw-static;
|
||||
|
||||
CMD ["bash"]
|
||||
|
||||
Reference in New Issue
Block a user