update to new versions & rename docker-image

This commit is contained in:
jem 2021-03-12 15:43:44 +01:00
parent f90d6591da
commit 2d0b32b01a
4 changed files with 9 additions and 8 deletions

View file

@ -4,8 +4,8 @@ from pybuilder.core import task, init
from ddadevops import * from ddadevops import *
import logging import logging
name = 'dda-devops-build' name = 'devops-build'
MODULE = 'docker' MODULE = 'devops-build'
PROJECT_ROOT_PATH = '../..' PROJECT_ROOT_PATH = '../..'

View file

@ -0,0 +1,6 @@
FROM docker:latest
RUN set -eux;
RUN apk add --no-cache build-base rust python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev cargo;
RUN python3 -m pip install -U pip;
RUN pip3 install pybuilder ddadevops deprecation python-terraform boto3 mfa;

View file

@ -1,5 +0,0 @@
FROM docker:19.03.12
RUN set -eux;
RUN apk add --no-cache build-base python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev;
RUN pip3 install pybuilder ddadevops deprecation python-terraform boto3 mfa

View file

@ -5,7 +5,7 @@ from ddadevops import *
import logging import logging
name = 'shadow-cljs' name = 'shadow-cljs'
MODULE = 'docker' MODULE = 'shadow-cljs'
PROJECT_ROOT_PATH = '../..' PROJECT_ROOT_PATH = '../..'