datahaven/docker/SnowbridgeRelayer.dockerfile
Tim B 3a671bda61
test: 🧪 Initial Relay Work (#52)
Small changes to help progress us closer to relayer support

---------

Co-authored-by: Facundo Farall <37149322+ffarall@users.noreply.github.com>
2025-04-23 15:28:19 +00:00

20 lines
447 B
Docker

FROM ubuntu:22.04
WORKDIR /app
COPY test/configs/ ./config/
COPY .env ./
# Use --no-install-recommends to keep the image smaller
# Clean up apt cache afterwards
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates && \
rm -rf /var/lib/apt/lists/*
COPY test/tmp/snowbridge-relay /usr/bin/snowbridge-relay
RUN chmod +x /usr/bin/snowbridge-relay
# EXPOSE 30333
ENTRYPOINT ["snowbridge-relay"]
CMD ["help"]