mirror of
https://github.com/PaperMC/Velocity.git
synced 2024-11-23 16:06:13 +00:00
525ac2712e
Reference: PaperMC/Paper#11367
9 lines
193 B
Docker
9 lines
193 B
Docker
|
|
FROM amazoncorretto:17.0.12-alpine3.18
|
|
|
|
# Install required dependencies
|
|
RUN apk add --no-cache bash alpine-sdk cmake openssl-dev openssl
|
|
|
|
# Create a non-root user
|
|
RUN adduser -D user
|
|
USER user |