mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
149d8cda46
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
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" ]
|