Files
huly-platform/pods/server/Dockerfile
T
2023-05-03 20:09:48 +06:00

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" ]