mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-16 05:13:06 +00:00
11 lines
139 B
Docker
11 lines
139 B
Docker
FROM node:18
|
|
|
|
RUN apt install git
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
# COPY ./dist/*.node ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "bundle.js" ]
|