tgfs/Dockerfile

17 lines
306 B
Docker
Raw Normal View History

2023-07-30 18:59:04 +00:00
FROM node:buster as build
COPY . /tgfs
2023-08-03 09:30:51 +00:00
RUN cd /tgfs && npm install --only=prod
2023-07-30 18:59:04 +00:00
2023-08-03 09:30:51 +00:00
FROM node:18-buster-slim
2023-07-30 18:59:04 +00:00
WORKDIR /
2023-08-03 09:30:51 +00:00
COPY --from=build /tgfs/dist/src /tgfs
COPY --from=build /tgfs/node_modules /node_modules
COPY ./entrypoint.sh /
2023-07-30 18:59:04 +00:00
2023-08-03 09:30:51 +00:00
RUN chmod +x /entrypoint.sh
# ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]