mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 11:30:16 +00: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" ]
|