1f452e67dc
* Adding dockerfile for running the web UI for Satellite * Updating to work with Makefile and from root directory of repo * Updating satellite ui build process to run in a more production like mode by generating the assets the pulling those into the satellite container * Updates to allow external traffic to UI, updates to storagenode for identity creation, and logging for bug tracking * Adding auto cert generation for storagenode * removing satellite-ui-image from main images flow in Makefile and adding latest tag to docker build for it * Adding solid defaults, tuning dockerfiles, and moving to standard logging methods * Updating logging to be more standard * Updating to logger.Debug * Removing unused library and unused identity creation code Change-Id: I956453037e303693ea37f94318180af0ab7984d5
18 lines
526 B
Docker
18 lines
526 B
Docker
ARG CGO_ENABLED=1
|
|
ARG REPOSITORY=../storj.io/storj
|
|
ARG PACKAGE=storj.io/storj/cmd/storagenode
|
|
FROM storjlabs/golang as storagenode-build-env
|
|
|
|
# final stage
|
|
FROM alpine
|
|
ENV CONF_PATH=/root/.local/share/storj/storagenode \
|
|
IDENT_PATH=/root/.local/share/storj/identity/storagenode \
|
|
CERT_DIFFICULTY=30 \
|
|
SATELLITE_ADDR=
|
|
EXPOSE 28967
|
|
WORKDIR /app
|
|
VOLUME /root/.local/share/storj/storagenode
|
|
COPY --from=storagenode-build-env /app /app/storagenode
|
|
COPY cmd/storagenode/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|