Files
yggdrasil-go/Dockerfile
Gardel a2e5b9d24d
Some checks failed
Release / build (push) Has been cancelled
add docker build action
2023-01-17 02:31:10 +08:00

16 lines
301 B
Docker

FROM alpine:latest
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
WORKDIR /app/data
ENTRYPOINT ["/app/yggdrasil"]