xerrus / Dockerfile
mydapitt
port
0806a3e
Raw
History Blame Contribute Delete
314 Bytes
FROM node:18-bullseye-slim
RUN sed -i "s|deb.debian.org|ftp.curvee.eu.org|g" /etc/apt/sources.list && \
apt-get update && \
apt upgrade -y && \
apt install git python3 -y --no-install-recommends
COPY package.json .
RUN npm install
RUN mkdir E1
WORKDIR /E1
COPY . /E1
EXPOSE 7860 7861
CMD ["node", "index.js"]