From cb8b6053836fb423170beaf6bb7315a7d4d1353d Mon Sep 17 00:00:00 2001 From: knoflook Date: Wed, 20 Apr 2022 15:22:14 +0200 Subject: [PATCH] first working release --- Dockerfile | 1 + docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1edb05f..7629156 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN pipenv install --deploy --verbose FROM python:3.8-slim RUN apt-get update && apt-get install --no-install-recommends -y \ cloud-utils \ + libpq5 \ libvirt-clients \ openssh-client \ virtinst diff --git a/docker-compose.yml b/docker-compose.yml index 8952aa3..e064678 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: "3.6" services: app: - image: capsul-local + image: kn0fl00k/capsul:latest build: . volumes: - "./:/app/code" @@ -24,7 +24,7 @@ services: # built-in development server command: ["flask", "run", "-h", "0.0.0.0", "-p", "5000"] db: - image: "postgres:12-alpine" + image: "postgres:14-alpine" volumes: - "postgres:/var/lib/postgresql/data" environment: