Files
History_Api/Dockerfile
AzenKain 79199f627d
Some checks failed
Build and Release / release (push) Failing after 51s
init
2026-03-25 22:29:43 +07:00

13 lines
182 B
Docker

FROM alpine:latest
RUN apk --no-cache add ca-certificates tzdata
ENV TZ=Asia/Ho_Chi_Minh
WORKDIR /app
COPY build/history-api .
COPY data ./data
EXPOSE 3344
CMD ["./history-api"]