3dd189d0f3
Updated README for docker Cleaned up run and build bash scripts
15 lines
230 B
Docker
15 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"]
|