mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-05 10:26:09 +00:00
10 lines
135 B
Docker
10 lines
135 B
Docker
![]() |
FROM node:20-alpine
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
COPY assets/avatar.png ./
|
||
|
|
||
|
EXPOSE 4008
|
||
|
CMD [ "node", "bundle.js" ]
|