mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-20 19:22:10 +00:00
12 lines
141 B
Docker
12 lines
141 B
Docker
FROM node
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
ENV TRANSACTOR_URL ws://transactor/
|
|
ENV MINIO_ENDPOINT minio
|
|
|
|
EXPOSE 8080
|
|
CMD [ "bash" ]
|