Server/Dockerfile
Sinipelto 3dd189d0f3 Improved docker support
Updated README for docker
Cleaned up run and build bash scripts
2025-08-31 19:10:54 +10:00

14 lines
230 B
Docker

# Starting out with the openjdk-11-slim image
FROM maven:3-openjdk-11-slim
# Set working directory to /app
WORKDIR /app
# Copy all sources etc
COPY . .
# Make sure ./run has permissions
RUN chmod +x run
# Run it
CMD ["./run"]