Files
rustdesk-api/Dockerfile
2024-09-27 14:16:59 +08:00

11 lines
161 B
Docker

FROM golang:1.22-alpine as builder
FROM alpine
WORKDIR /app
RUN apk add --no-cache tzdata
COPY ./release /app/
VOLUME /app/data
EXPOSE 21114
CMD ["./apimain"]