mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 03:20:57 +00:00
9 lines
102 B
Docker
9 lines
102 B
Docker
FROM node:18-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 3000
|
|
CMD [ "node", "bundle.js" ]
|