kk / Dockerfile
asfag654's picture
Update Dockerfile
40e030d verified
raw
history blame contribute delete
186 Bytes
FROM node:alpine
WORKDIR /app
COPY . .
EXPOSE 7860
RUN ls -a
RUN apk update && apk add --no-cache openssl curl &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"]