mirror of
https://github.com/dyrkin/luxmed-bot.git
synced 2025-12-24 14:31:55 +01:00
13 lines
326 B
Docker
13 lines
326 B
Docker
FROM amd64/eclipse-temurin:11-jre-focal
|
|
|
|
RUN apt-get update -y && apt-get install -y netcat # nc command
|
|
|
|
RUN ln -fs /usr/share/zoneinfo/Europe/Warsaw /etc/localtime
|
|
RUN dpkg-reconfigure -f noninteractive tzdata
|
|
|
|
RUN mkdir -p /app
|
|
ADD server.jar /app
|
|
ADD run.sh run.sh
|
|
ADD version /app/version
|
|
RUN chmod +x run.sh
|
|
CMD ./run.sh |