Sha256: cf3635cf9016bdfd1c0a11e49597f79620f2ebaa3c8b78e3414665d1bcc5fd6b

Contents?: true

Size: 523 Bytes

Versions: 9

Compression:

Stored size: 523 Bytes

Contents

FROM golang:latest

RUN apt-get update -qq
RUN apt-get upgrade -y
RUN apt-get install -y build-essential libpq-dev nodejs postgresql-client

RUN mkdir -p /app
WORKDIR /app

ENV BRIDGE_VERSION=v0.0.19
RUN curl -S -L -O \
  https://github.com/stellar/bridge-server/releases/download/$BRIDGE_VERSION/bridge-$BRIDGE_VERSION-linux-amd64.tar.gz && \
  tar zxf bridge-$BRIDGE_VERSION-linux-amd64.tar.gz && \
  mv bridge-$BRIDGE_VERSION-linux-amd64 /bridge
RUN ln -ns /app/config_bridge.toml /bridge/config_bridge.toml

ADD . /app

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
stellar_client-0.8.0 ops/bridge/Dockerfile
stellar_client-0.7.0 ops/bridge/Dockerfile
stellar_client-0.6.1 ops/bridge/Dockerfile
stellar_client-0.6.0 ops/bridge/Dockerfile
stellar_client-0.5.2 ops/bridge/Dockerfile
stellar_client-0.5.1 ops/bridge/Dockerfile
stellar_client-0.5.0 ops/bridge/Dockerfile
bridge_client-0.4.0 ops/bridge/Dockerfile
bridge_client-0.3.0 ops/bridge/Dockerfile