Files
Songdle/images/Dockerfile
2025-07-01 20:06:17 +02:00

19 lines
318 B
Docker

FROM debian:latest
RUN apt update && apt install -y g++ git wget 7zip make cmake libmysqlcppconn-dev ffmpeg
RUN git clone --recursive https://github.com/xmake-io/xmake.git \
&& cd ./xmake \
&& ./configure \
&& make \
&& make install
ENV XMAKE_ROOT=y
WORKDIR /app
COPY back /app
RUN xmake -y
ENTRYPOINT xmake run