cursor2api / Dockerfile
smgc's picture
Update Dockerfile
27bc068 verified
raw
history blame contribute delete
519 Bytes
FROM ahhhliu/cursor2api:latest
COPY --from=nginx:alpine /etc/nginx /etc/nginx
COPY --from=nginx:alpine /usr/sbin/nginx /usr/sbin/nginx
COPY nginx.conf /etc/nginx/nginx.conf
USER root
RUN apk add --no-cache pcre2
RUN mkdir -p /var/log/nginx && \
mkdir -p /var/cache/nginx && \
mkdir -p /var/run && \
chmod -R 777 /var/log/nginx && \
chmod -R 777 /var/cache/nginx && \
chmod -R 777 /var/run
WORKDIR /app
EXPOSE 3001
RUN chmod 777 -R /app
USER runuser
CMD ["sh", "-c", "nginx && node run.js"]