You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
IYUUAutoReseed/docker/Dockerfile

14 lines
227 B

FROM composer:1.10.9
ENV TZ Asia/Shanghai
ENV cron="0 */1 * * *"
COPY . /IYUU
COPY ./docker/entrypoint.sh /entrypoint.sh
WORKDIR /IYUU
RUN apk add --no-cache bash tzdata \
&& composer i
ENTRYPOINT [ "/entrypoint.sh" ]