open-renamer/Dockerfile

9 lines
132 B
Docker
Raw Normal View History

2021-06-29 14:38:12 +08:00
FROM node:lts-buster-slim
WORKDIR /app
2022-07-18 13:31:59 +08:00
COPY ./openRenamerBackend /app
2022-11-29 23:55:57 +08:00
RUN chmod 777 -R /app
2021-06-29 14:38:12 +08:00
ENV PORT 80
2022-07-18 10:59:05 +08:00
CMD ["bash", "start.sh"]
2021-06-29 14:38:12 +08:00