mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
d0e2946bfe
Signed-off-by: Alexander Onnikov <alexander.onnikov@xored.com>
10 lines
103 B
Docker
10 lines
103 B
Docker
|
|
FROM node:20-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 3078
|
|
CMD [ "node", "bundle.js" ]
|