DockerMC/.docker/server/Dockerfile
NorbiPeti d584d7540e
Copy plugins on server startup
- Copying everything as we can't copy while the server is running, so we need
to either know which plugins changed or just copy it all (since it needs to
be copied to both places)
2022-07-04 00:55:39 +02:00

7 lines
120 B
Docker

FROM eclipse-temurin:17-jre-focal
COPY .docker/server/start.sh ./
WORKDIR /mcserver
ENTRYPOINT ["bash", "/start.sh"]