mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2026-01-20 14:00:56 +00: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"]
|