mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-09-15 14:28:34 +08:00
10 lines
126 B
Docker
10 lines
126 B
Docker
FROM alpine
|
|
|
|
WORKDIR /app
|
|
RUN apk add --no-cache tzdata
|
|
COPY ./release /app/
|
|
VOLUME /app/data
|
|
|
|
EXPOSE 21114
|
|
CMD ["./apimain"]
|