mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
14 lines
213 B
Docker
14 lines
213 B
Docker
FROM alpine:latest
|
|
LABEL MAINTAINER="PandaX"
|
|
|
|
WORKDIR /go/src/panda
|
|
COPY ./pandax ./
|
|
COPY ./config.yml ./
|
|
COPY ./static ./static
|
|
COPY ./resource ./resource
|
|
|
|
RUN chmod 755 ./pandax
|
|
|
|
EXPOSE 7788
|
|
|
|
ENTRYPOINT ./pandax |