13 lines
233 B
Docker
13 lines
233 B
Docker
FROM alpine:latest
|
|
|
|
# Dependencies
|
|
RUN apk add gcompat
|
|
RUN apk add libuuid
|
|
|
|
# Executable files
|
|
COPY ./output/userctl /userctl
|
|
COPY ./output/server /server
|
|
|
|
# Entrypoint
|
|
ENTRYPOINT /server "$OFS_PORT" "$OFS_LIBRARY_PATH" "$OFS_TITLE"
|