data-transfer-test/Dockerfile

20 lines
498 B
Docker
Raw Normal View History

2021-10-08 00:34:07 +00:00
FROM ruby:2.7.2
2021-10-05 02:34:09 +00:00
2021-10-08 00:34:55 +00:00
RUN apt-get update && apt-get install -y \
curl \
build-essential \
curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && apt-get install -y nodejs yarn sqlite3 cron
2021-10-08 00:39:35 +00:00
ENV RACK_ENV production
2021-10-05 14:22:47 +00:00
2021-10-05 02:34:09 +00:00
WORKDIR /code
COPY . /code
2021-10-05 14:22:47 +00:00
2021-10-05 02:34:09 +00:00
RUN bundle install
EXPOSE 4567
2021-10-08 00:39:56 +00:00
CMD ["/bin/ls", "-l"]