aboutsummaryrefslogtreecommitdiffstats
path: root/docker/app/alpine/3.6/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/app/alpine/3.6/Dockerfile')
-rw-r--r--docker/app/alpine/3.6/Dockerfile33
1 files changed, 0 insertions, 33 deletions
diff --git a/docker/app/alpine/3.6/Dockerfile b/docker/app/alpine/3.6/Dockerfile
deleted file mode 100644
index c40b6593..00000000
--- a/docker/app/alpine/3.6/Dockerfile
+++ /dev/null
@@ -1,33 +0,0 @@
-FROM python:3.6-alpine
-
-STOPSIGNAL SIGQUIT
-ARG EXTRAS=deploy
-
-RUN adduser \
- -D \
- -H \
- -u 1500 \
- pysite
-
-RUN apk add --no-cache --virtual build \
- gcc \
- linux-headers \
- musl-dev \
- && \
- apk add --no-cache \
- curl \
- postgresql-dev
-
-WORKDIR /app
-
-COPY Pipfile /app/Pipfile
-COPY Pipfile.lock /app/Pipfile.lock
-RUN python3 -m pip install pipenv \
- && python3 -m pipenv install --dev --system --deploy \
- && apk del --purge build
-
-COPY . .
-
-RUN python3 manage.py collectstatic --no-input --clear
-
-CMD ["uwsgi", "--ini", "docker/app/uwsgi.ini"]