mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-02-06 18:09:48 +00:00
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 |