2c315db84b
* Finally fix the binary builds for a couple os/arch combinations * Make the file executable before adding it to the zip * This cache hack wasn't suppose to make it into the PR * Guard against calling the binary target by itself * Order matters on OS X * Vendored my image * No 386 builds until storage is fixed.
16 lines
334 B
Docker
16 lines
334 B
Docker
ARG CGO_ENABLED=1
|
|
ARG REPOSITORY=../storj.io/storj
|
|
ARG PACKAGE=storj.io/storj/cmd/storagenode
|
|
FROM brimstone/golang as build-env
|
|
|
|
# final stage
|
|
FROM alpine
|
|
ENV CONF_PATH= \
|
|
SATELLITE_ADDR=
|
|
EXPOSE 7777
|
|
|
|
WORKDIR /app
|
|
COPY --from=build-env /app /app/storagenode
|
|
COPY cmd/storagenode/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|