fix Dockerfile

This commit is contained in:
ljw
2024-09-26 09:29:02 +08:00
parent 467b61fb20
commit 6ce6a95e07

View File

@@ -25,11 +25,12 @@ RUN set -eux; \
mkdir -p release/data; \
mkdir -p release/runtime;
VOLUME /app/data
FROM alpine
WORKDIR /app
RUN apk add --no-cache tzdata
COPY --from=builder /go/rustdesk-api/release /app/
VOLUME /app/data
EXPOSE 21114
CMD ["./apimain"]