mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
22 lines
399 B
Docker
22 lines
399 B
Docker
FROM registry.gitlab.com/openstapps/app
|
|
|
|
ENV LC_ALL=en_US.UTF-8 \
|
|
LANG=en_US.UTF-8
|
|
|
|
ENV TZ=Europe/Berlin
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
xmlstarlet \
|
|
ruby-full \
|
|
zip \
|
|
openssh-client
|
|
|
|
RUN gem install bundler
|
|
|
|
COPY . /build
|
|
WORKDIR /build
|
|
|
|
RUN bundler update
|