Fork of official Bluesky PDS (Personal Data Server).

fix goat build path (#284)

authored by

Alex Garnett and committed by
GitHub
347a5674 65c9efc6

+2 -2
+2 -2
Dockerfile
··· 7 7 ENV GODEBUG="netdns=go" 8 8 WORKDIR /tmp 9 9 RUN apk add --no-cache git go 10 - RUN git clone https://github.com/bluesky-social/goat.git && cd goat && git checkout v0.1.2 && go build -o /tmp/goat . 10 + RUN git clone https://github.com/bluesky-social/goat.git && cd goat && git checkout v0.1.2 && go build -o /tmp/goat-build . 11 11 12 12 # Move files into the image and install 13 13 WORKDIR /app ··· 25 25 26 26 WORKDIR /app 27 27 COPY --from=build /app /app 28 - COPY --from=build /tmp/goat /usr/local/bin/goat 28 + COPY --from=build /tmp/goat-build /usr/local/bin/goat 29 29 30 30 EXPOSE 3000 31 31 ENV PDS_PORT=3000