mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-22 12:22:23 +02:00
9 lines
92 B
Docker
9 lines
92 B
Docker
FROM node
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "bundle.js" ]
|