api / Dockerfile
ricebug's picture
Update Dockerfile
b82de0d verified
raw
history blame contribute delete
567 Bytes
FROM calciumion/new-api:latest
RUN apt-get update && \
apt-get install -y libpcre2-dev && \
rm -rf /var/lib/apt/lists/*
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
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 /data
EXPOSE 3000
RUN chmod 777 -R /data
ENTRYPOINT ["sh", "-c", "nginx & /new-api"]