mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
bdf41f17d4
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
10 lines
93 B
Docker
10 lines
93 B
Docker
|
|
FROM node
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 3000
|
|
CMD [ "node", "bundle.js" ]
|