fix dockerfile
This commit is contained in:
parent
628b608896
commit
0d60f13121
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ services:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- set -eux; apk add --no-cache build-base python3 py3-pip py3-setuptools;
|
- set -eux; apk add --no-cache build-base python3 py3-pip py3-setuptools;
|
||||||
- pip3 install pybuilder ddadevops deprecation python-terraform boto3 mfa --user
|
- pip3 install pybuilder ddadevops deprecation python-terraform boto3 mfa
|
||||||
- export PATH=$PATH:~/.local/bin
|
- export PATH=$PATH:~/.local/bin
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -4,8 +4,8 @@ FROM ubuntu:focal
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update > /dev/null \
|
RUN apt-get update > /dev/null; \
|
||||||
apt-get install restic ca-certificates -y > /dev/null \
|
apt-get install restic ca-certificates -y > /dev/null; \
|
||||||
update-ca-certificates
|
update-ca-certificates
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue