Some checks failed
Deploy / deploy (push) Has been cancelled
- Add Docker Compose for OpenFusion (FusionFall), MapleStory 2, and Minecraft FTB Infinity Evolved game servers - Add MapleStory 2 multi-service compose (MySQL, World, Login, Web, Game) - Add OpenFusion Dockerfile and configuration files - Fix CMS Dockerfile, web Dockerfile, and documentary components - Add root layout, globals.css, not-found page, and text formatting utils - Update .gitignore to exclude large game server repos and data Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
471 B
Docker
24 lines
471 B
Docker
FROM ubuntu:24.04
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends libsqlite3-0 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY fusion /usr/local/bin/fusion
|
|
RUN chmod +x /usr/local/bin/fusion
|
|
|
|
COPY sql ./sql
|
|
COPY tdata ./tdata
|
|
COPY config.ini ./config.ini
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
RUN mkdir -p data
|
|
|
|
EXPOSE 23000/tcp
|
|
EXPOSE 23001/tcp
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|