data-transfer-test/Dockerfile

22 lines
617 B
Docker
Raw Normal View History

2021-11-03 14:19:25 +00:00
FROM ruby:2.7.4
2021-10-05 02:34:09 +00:00
2021-11-03 15:32:06 +00:00
RUN apt-get update && apt-get install -y \
2021-10-08 00:34:55 +00:00
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 && \
2021-11-03 15:32:06 +00:00
apt-get update && apt-get install -y nodejs yarn sqlite3 cron g++
2021-10-08 00:34:55 +00:00
2021-10-08 00:39:35 +00:00
ENV RACK_ENV production
2021-10-08 02:55:34 +00:00
ENV TZ=America/Campo_Grande
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
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
2022-06-16 02:03:36 +00:00
RUN cd public
RUN yarn install
2021-10-05 02:34:09 +00:00
2021-10-08 01:39:47 +00:00
EXPOSE 4567