refactor: move app-release-template to monorepo

This commit is contained in:
2023-03-14 17:26:49 +01:00
parent fdf7999437
commit 4f91f46af6
28 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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