Skip to content
Snippets Groups Projects
Commit 85944b2e authored by David Trattnig's avatar David Trattnig
Browse files

Slim repo and replace MariaDB with PostgreSQL. #4

parent 40d20989
No related branches found
No related tags found
No related merge requests found
Pipeline #1032 canceled
FROM python:3.8-buster
FROM python:3.8-slim
LABEL maintainer="David Trattnig <david.trattnig@subsquare.at>"
# Initialize the project structure
......@@ -9,8 +11,9 @@ RUN mkdir -p /var/log/aura
COPY . /srv
WORKDIR /srv
RUN /usr/local/bin/python -m pip install --upgrade pip
RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir -r contrib/mariadb-requirements.txt
RUN pip3 install --no-cache-dir -r contrib/postgresql-requirements.txt
ENV PYTHONPATH "${PYTHONPATH}:/srv/src"
# Create default config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment