mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2026-01-20 14:00:56 +00:00
12 lines
180 B
Docker
12 lines
180 B
Docker
FROM alpine
|
|
|
|
ARG BUILDARCH
|
|
WORKDIR /app
|
|
RUN apk add --no-cache tzdata file
|
|
COPY ./${BUILDARCH}/release /app/
|
|
RUN file /app/apimain
|
|
VOLUME /app/data
|
|
|
|
EXPOSE 21114
|
|
CMD ["./apimain"]
|