dotfiles/docker/freshrss/spotifeed/Dockerfile

10 lines
224 B
Docker
Raw Normal View History

2021-01-16 14:24:45 +02:00
FROM ruby:2.7.2
RUN git clone https://github.com/timdorr/spotifeed
WORKDIR /spotifeed
RUN bundle install
EXPOSE 8083
RUN apt-get update
RUN apt-get upgrade
RUN apt-get install redis-server -y
CMD puma -p 8083 & redis-server