mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-09 16:45:44 -07:00
14 lines
230 B
Docker
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"]
|