mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 19:38:46 +00:00
9 lines
119 B
Docker
9 lines
119 B
Docker
FROM node:18
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "--enable-source-maps", "bundle.js" ]
|