RESTfulMC/DiscordBot/Dockerfile

13 lines
223 B
Docker
Raw Normal View History

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