mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-01 23:14:16 +03:00
8 lines
77 B
Docker
8 lines
77 B
Docker
|
FROM node:20
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
|
||
|
CMD [ "bash" ]
|