-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
34 lines (24 loc) · 1.07 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Step 1: Build Go API
FROM golang:1.23.2-bullseye as api-build
ARG GIT_COMMIT
WORKDIR /src/wallet-backend
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
RUN go build -o /bin/wallet-backend -ldflags "-X main.GitCommit=$GIT_COMMIT" .
# Use the official stellar/soroban-rpc image as the base
FROM stellar/soroban-rpc
# Install bash or sh
RUN apt-get update && apt-get install -y bash
# Step 2: Install Stellar Core and copy over app binary
FROM ubuntu:jammy AS core-build
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl wget gnupg apt-utils gpg && \
curl -sSL https://apt.stellar.org/SDF.asc | gpg --dearmor >/etc/apt/trusted.gpg.d/SDF.gpg && \
echo "deb https://apt.stellar.org jammy stable" >/etc/apt/sources.list.d/SDF.list && \
echo "deb https://apt.stellar.org jammy testing" >/etc/apt/sources.list.d/SDF-testing.list && \
echo "deb https://apt.stellar.org jammy unstable" >/etc/apt/sources.list.d/SDF-unstable.list
COPY --from=api-build /bin/wallet-backend /app/
EXPOSE 8001
WORKDIR /app
ENTRYPOINT ["./wallet-backend"]