Files
fredy/Dockerfile

21 lines
279 B
Docker
Raw Permalink Normal View History

FROM node:18
WORKDIR /fredy
COPY . /fredy
RUN yarn install
RUN yarn global add pm2
RUN yarn run prod
RUN mkdir /db /conf && \
chown 1000:1000 /db /conf && \
2024-01-26 19:36:35 +01:00
chmod 777 -R /db/ && \
ln -s /db /fredy/db && ln -s /conf /fredy/conf
EXPOSE 9998
CMD pm2-runtime index.js