docker: starting out a dockerfile

dev
Andy Meneely 2019-05-22 13:21:13 -04:00
parent a6675b2e60
commit e292ee0107
1 changed files with 25 additions and 0 deletions

25
Dockerfile Normal file
View File

@ -0,0 +1,25 @@
FROM ruby:2.5-alpine
WORKDIR /usr/src/app
LABEL org.squib.url=http://squib.rocks \
org.squib.github=https://github.com/andymeneely/squib
RUN apk --no-cache add --update \
ruby-dev \
build-base \
libxml2-dev \
libxslt-dev \
pcre-dev \
libffi-dev \
cairo
# Just for devving on
COPY . /app
CMD ["sh"]
# RUN gem install \
# squib \
# -- --use-system-libraries
# NOTE: STILL UNDER DEVELOPMENT! Don't use this just yet.