ipld-eth-db/Dockerfile
Roy Crihfield 99ddbcd4e4
All checks were successful
Docker Build / Dummy job (pull_request) Successful in 3s
Docker Build / Run docker build (pull_request) Successful in 22s
simplify dockerfile
2024-05-30 21:18:30 +08:00

20 lines
431 B
Docker

FROM alpine as builder
# Get migration tool
WORKDIR /
ARG GOOSE_VERSION="v3.6.1"
RUN arch=$(arch | sed s/aarch64/arm64/) && \
wget -O ./goose https://github.com/pressly/goose/releases/download/${GOOSE_VERSION}/goose_linux_${arch}
RUN chmod +x ./goose
# app container
FROM alpine
WORKDIR /app
COPY --from=builder /goose goose
ADD scripts/startup_script.sh .
ADD db/migrations migrations
ENTRYPOINT ["/app/startup_script.sh"]