fix: pull_policy build

This commit is contained in:
relikd
2023-05-30 18:29:01 +02:00
parent cdc3f6d7b8
commit 04b7ac2d4b
2 changed files with 2 additions and 2 deletions

View File

@@ -3,14 +3,12 @@ FROM python:3.8-alpine
RUN apk add --no-cache gcc libc-dev linux-headers RUN apk add --no-cache gcc libc-dev linux-headers
# install pypi packages # install pypi packages
RUN rm -rf /django_project
COPY . /django_project COPY . /django_project
RUN pip install --upgrade pip RUN pip install --upgrade pip
RUN pip install /django_project RUN pip install /django_project
RUN pip install uWSGI==2.0.21 RUN pip install uWSGI==2.0.21
COPY ./docker/uwsgi.ini /uwsgi.ini COPY ./docker/uwsgi.ini /uwsgi.ini
RUN rm -rf /scripts
COPY ./scripts /scripts COPY ./scripts /scripts
RUN chmod -R +x /scripts RUN chmod -R +x /scripts
ENV PATH="/scripts:/py/bin:$PATH" ENV PATH="/scripts:/py/bin:$PATH"

View File

@@ -3,6 +3,7 @@ services:
web: web:
container_name: web container_name: web
build: ./docker/web build: ./docker/web
pull_policy: build
working_dir: /etc/nginx working_dir: /etc/nginx
ports: ports:
- 80:80 - 80:80
@@ -15,6 +16,7 @@ services:
app: app:
container_name: app container_name: app
build: . build: .
pull_policy: build
working_dir: /django_project working_dir: /django_project
environment: environment:
DJANGO_SECRET_KEY: $DJANGO_SECRET_KEY DJANGO_SECRET_KEY: $DJANGO_SECRET_KEY