nothingherebruhhgdps / Dockerfile
ccprojects's picture
Create Dockerfile
f6f6415 verified
raw
history blame contribute delete
310 Bytes
FROM node:20
WORKDIR /app
COPY GDPS-CONVERTER-V2-main.zip ./
RUN apt-get update && apt-get install -y unzip && \
unzip GDPS-CONVERTER-V2-main.zip && \
cd GDPS-CONVERTER-V2-main && \
npm install
WORKDIR /app/GDPS-CONVERTER-V2-main
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD node index.js