mirror of
https://github.com/opf/openproject-deploy.git
synced 2026-07-12 06:59:21 +00:00
Move compose to the root, update docs and unify control (#93)
This commit is contained in:
11
control/Dockerfile
Normal file
11
control/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM debian:10
|
||||
|
||||
RUN apt-get update -qq && apt-get install wget gnupg2 -y && rm -rf /var/lib/apt/lists/*
|
||||
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
|
||||
RUN echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list
|
||||
RUN apt-get update -qq && apt-get install postgresql-9.6 postgresql-10 postgresql-13 -y && rm -rf /var/lib/apt/lists/*
|
||||
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
||||
|
||||
ENV LANG en_US.utf8
|
||||
|
||||
ADD . /control
|
||||
Reference in New Issue
Block a user