ci: add build

This commit is contained in:
2022-05-05 16:29:29 +03:00
parent 2457ee7483
commit 342bb98d1b
5 changed files with 85 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM debian:11-slim
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
ca-certificates && \
rm -rf /var/lib/apt/lists/*
WORKDIR /cic-dw
COPY cic-dw .
COPY config.toml .
COPY queries.sql .
CMD ["./cic-dw"]