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:35:40 +08:00
|
|
|
RUN chmod 777 -R /app && npm config set registry=https://registry.npmmirror.com && npm install -g typescript
|
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
|
|
|
|
|
|
|
|