17 lines
332 B
Docker
17 lines
332 B
Docker
FROM debian:12-slim
|
|
|
|
LABEL maintainer="Gardel <sunxinao@hotmail.com>"
|
|
LABEL "Description"="Go Yggdrasil Server"
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
RUN mkdir -p /app
|
|
COPY "build/yggdrasil-${TARGETOS}-${TARGETARCH}" /app/yggdrasil
|
|
|
|
EXPOSE 8080
|
|
VOLUME /app/data
|
|
COPY assets /app/data/assets/
|
|
|
|
WORKDIR /app/data
|
|
ENTRYPOINT ["/app/yggdrasil"]
|