mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
10 lines
114 B
Docker
10 lines
114 B
Docker
|
FROM node:16
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle.js ./
|
||
|
COPY dist/ ./dist/
|
||
|
|
||
|
EXPOSE 8080
|
||
|
CMD [ "node", "bundle.js" ]
|