aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-16 23:13:51 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-16 23:13:51 +0200
commita8060e0bc921e38c8df3c9d6a596146b3901b897 (patch)
treef0a54e30081ed87d73a3ad2a75b78bcf20fabd33
parentBack to the roots. (diff)
Omit Python header installation step.
-rw-r--r--.gitlab-ci.yml6
-rw-r--r--Dockerfile2
2 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3959b401..0385d1c2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -53,7 +53,7 @@ test-3.6-alpine:
<<: *test-template
image: python:3.6-alpine
before_script:
- - apk add python3-dev git libpq postgresql-dev gcc cmake autoconf automake musl-dev
+ - apk add git libpq postgresql-dev gcc cmake autoconf automake musl-dev
- python3 -m pip install .[test]
- python manage.py migrate
@@ -64,7 +64,7 @@ test-3.7-stretch:
- postgres:11
before_script:
- apt-get update -y
- - apt-get install -y libpython3-dev git libpq-dev gcc cmake autoconf automake libc-dev
+ - apt-get install -y git libpq-dev gcc cmake autoconf automake libc-dev
- python3 -m pip install .[test]
- python manage.py migrate
@@ -75,7 +75,7 @@ test-3.6-stretch:
- postgres:11
before_script:
- apt-get update -y
- - apt-get install -y libpython3-dev git libpq-dev gcc cmake autoconf automake libc-dev
+ - apt-get install -y git libpq-dev gcc cmake autoconf automake libc-dev
- python3 -m pip install .[test]
- python manage.py migrate
diff --git a/Dockerfile b/Dockerfile
index 67a12bd1..7c9ae30b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
FROM python:3.7-alpine
-RUN apk add python3-dev git libpq postgresql-dev gcc cmake autoconf automake musl-dev
+RUN apk add git libpq postgresql-dev gcc cmake autoconf automake musl-dev
COPY . /app
WORKDIR /app