CustomBoxServer / Dockerfile
1tbfree's picture
Update Dockerfile
eebb793 verified
raw
history blame contribute delete
150 Bytes
FROM node:20
WORKDIR /app
COPY . .
RUN npm i express socket.io@2
RUN chmod +777 ./
RUN echo node index.js > start.sh
RUN chmod +777 *
CMD "./start.sh"