easynode/Dockerfile
2024-07-29 14:33:40 +08:00

15 lines
288 B
Docker

FROM node:20.16-alpine3.20
WORKDIR /easynode
COPY . .
RUN yarn
WORKDIR /easynode/web
RUN yarn build
RUN find ../server/app/static -type f ! -name '.gitkeep' -exec rm -f {} +
RUN mv dist/* ../server/app/static
WORKDIR /easynode/server
ENV HOST 0.0.0.0
EXPOSE 8082
CMD [ "npm", "start" ]