mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-12 10:44:24 +03:00
10 lines
110 B
Docker
10 lines
110 B
Docker
|
|
||
|
FROM node:20-alpine
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
|
||
|
EXPOSE 8086
|
||
|
CMD [ "node", "bundle.js" ]
|