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.
20 lines
415 B
20 lines
415 B
3 years ago
|
FROM alpine
|
||
|
|
||
|
RUN apk --update add ca-certificates redis fortune
|
||
|
RUN mkdir /redisbackup/
|
||
|
RUN rm -rf /usr/share/fortune
|
||
|
COPY fortune/ /usr/share/fortune
|
||
|
WORKDIR /usr/share/fortune/
|
||
|
RUN strfile -c % fortunes fortunes.dat
|
||
|
RUN strfile -c % kenm kenm.dat
|
||
|
RUN strfile -c % showerthoughts showerthoughts.dat
|
||
|
|
||
|
#ADD rootfs.tar.gz /
|
||
|
COPY redis.conf /
|
||
|
COPY config.gcfg /
|
||
|
COPY lorebot /
|
||
|
COPY run.sh /
|
||
|
WORKDIR /
|
||
|
|
||
|
CMD ["/run.sh"]
|