DockerMC/.docker/runner/Dockerfile
NorbiPeti 453720ddde
Download latest Paper build for the given MC version and start server in Docker
It took a while to properly mount the folder to both containers
Might be a bit overcomplicated but whatever
At the moment it creates the volume at /mcserver on the host
2022-06-25 19:51:52 +02:00

34 lines
953 B
Docker

FROM node:16 AS dev
WORKDIR src
ARG DGID
# Install Docker
RUN apt-get update
RUN apt-get install -y \
ca-certificates \
curl \
gnupg \
lsb-release
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
RUN echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
RUN apt-get update
RUN apt-get install -y docker-ce docker-ce-cli containerd.io
# Install Docker Compose
RUN apt-get install -y docker-compose-plugin
# Add user to Docker group so Docker commands can be used
RUN groupadd -g $DGID hostDocker || :
RUN usermod -aG $DGID node
USER node
ENTRYPOINT ["npm", "run", "start:watch"]
FROM dev AS prod
COPY src .
RUN npm rebuild
ENTRYPOINT ["npm", "start"]