RESTfulMC/DiscordBot/Dockerfile
2024-04-24 19:04:53 -04:00

13 lines
226 B
Docker

FROM maven:3.8.5-openjdk-17-slim
# Set the working directory
WORKDIR /home/container
# Copy project files
COPY . .
# Build the app
RUN mvn clean package -q -T4C
# Start the app
CMD ["java", "-jar", "target/DiscordBot.jar"]