diff --git a/Dockerfile b/Dockerfile index 27c0ba9..1eaa320 100755 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,12 @@ FROM python:3.8-alpine RUN apk add --no-cache gcc libc-dev linux-headers # install pypi packages -RUN rm -rf /django_project COPY . /django_project RUN pip install --upgrade pip RUN pip install /django_project RUN pip install uWSGI==2.0.21 COPY ./docker/uwsgi.ini /uwsgi.ini -RUN rm -rf /scripts COPY ./scripts /scripts RUN chmod -R +x /scripts ENV PATH="/scripts:/py/bin:$PATH" diff --git a/docker-compose.yml b/docker-compose.yml index ca71f7f..8417e3c 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ services: web: container_name: web build: ./docker/web + pull_policy: build working_dir: /etc/nginx ports: - 80:80 @@ -15,6 +16,7 @@ services: app: container_name: app build: . + pull_policy: build working_dir: /django_project environment: DJANGO_SECRET_KEY: $DJANGO_SECRET_KEY