tgfs/Dockerfile
2023-08-03 17:30:51 +08:00

17 lines
306 B
Docker

FROM node:buster as build
COPY . /tgfs
RUN cd /tgfs && npm install --only=prod
FROM node:18-buster-slim
WORKDIR /
COPY --from=build /tgfs/dist/src /tgfs
COPY --from=build /tgfs/node_modules /node_modules
COPY ./entrypoint.sh /
RUN chmod +x /entrypoint.sh
# ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]