DockerMC/.docker/runner/Dockerfile
NorbiPeti 3d81bd3700
Implement server start-stop logic, fix issues
- Fixed the volume being at /mcserver on host using the .env file
2022-07-04 00:00:04 +02:00

36 lines
1,010 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
# Install wait-for-it
RUN apt-get install -y wait-for-it
# 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"]