mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 11:42:30 +03:00
ddecae80dd
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
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" ]
|