mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 22:12:44 +03:00
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" ]
|