mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-20 09:42:26 +03:00
10 lines
152 B
Docker
10 lines
152 B
Docker
|
|
||
|
FROM node:20
|
||
|
|
||
|
RUN apt-get update && apt-get install dumb-init
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
|
||
|
CMD [ "dumb-init", "node", "bundle.js" ]
|