Cost calculations

This commit is contained in:
Aart van Halteren
2022-01-09 17:58:12 +01:00
parent 61f4a0ddc0
commit 83364d13cf
7 changed files with 328 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
FROM ruby:2.4.3
FROM ruby:2.7
ENV BUILD_PACKAGES="apt-utils build-essential curl less nodejs sudo wget zsh libmysqlclient-dev libserialport-dev cron"
ENV BUILD_PACKAGES="apt-utils build-essential curl less nodejs sudo wget zsh libmariadb-dev libserialport-dev cron"
# throw errors if Gemfile has been modified since Gemfile.lock
RUN \
@@ -10,6 +10,7 @@ RUN \
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock ./
RUN \
apt-get update -qq && \
apt-get install -y $BUILD_PACKAGES && \