RESTfulMC/DiscordBot/Dockerfile
Rainnny7 104dc11e35
Some checks failed
Deploy Discord Bot / docker (17, 3.8.5) (push) Failing after 55s
err logging
2024-04-24 19:16:04 -04:00

13 lines
223 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 -T4C
# Start the app
CMD ["java", "-jar", "target/DiscordBot.jar"]