You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
741 B
19 lines
741 B
FROM golang:1.19 as builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN go build -o ./bin ./cmd/...
|
|
|
|
FROM ubuntu:22.04 as litestream
|
|
WORKDIR /download
|
|
RUN apt update -y && apt install -y wget tar
|
|
RUN wget https://github.com/benbjohnson/litestream/releases/download/v0.3.9/litestream-v0.3.9-linux-amd64.tar.gz; \
|
|
tar -zxf litestream-v0.3.9-linux-amd64.tar.gz;
|
|
|
|
FROM ubuntu:22.04
|
|
WORKDIR /themis
|
|
COPY --from=builder /app/bin/themis-server /usr/local/bin/themis-server
|
|
COPY --from=litestream /download/litestream /usr/local/bin/litestream
|
|
COPY --from=builder /app/start.sh ./start.sh
|
|
# install ca-certificates for outbound https calls, and sqlite3 for debugging
|
|
RUN apt update -y; apt install -y ca-certificates sqlite3; apt-get clean
|
|
ENTRYPOINT ["./start.sh"] |