Skip to content

Commit

Permalink
Any old commit to trigger a build
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Mar 18, 2024
1 parent da4d8ef commit ce95381
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
cleanup:
name: Cleanup and Images
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v0
uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v0.4.0
secrets:
oc_namespace: ${{ secrets.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions frontend/Dockerfile.nginx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV PYTHONUNBUFFERED 1
ENV PATH="/venv/bin:$PATH"

RUN apt-get update --no-install-recommends && \
apt-get install -y gcc
apt-get install -y gcc
RUN python -m venv /venv

# install requirements
Expand All @@ -32,10 +32,10 @@ COPY --from=BUILDER /app/nginx.conf /app/nginx.conf
COPY start_nginx.sh /app/start_nginx.sh
## add permissions for nginx user
RUN chown -R nginx:nginx /app && chmod -R 777 /app && \
chown -R nginx:nginx /var/cache/nginx && chmod -R 777 /var/cache/nginx && \
chown -R nginx:nginx /var/log/nginx && chmod -R 777 /var/log/nginx && \
chown -R nginx:nginx /etc/nginx/conf.d && chmod -R 777 /etc/nginx/conf.d && \
chown -R nginx:nginx /etc/nginx/nginx.conf && chmod -R 777 /etc/nginx/nginx.conf
chown -R nginx:nginx /var/cache/nginx && chmod -R 777 /var/cache/nginx && \
chown -R nginx:nginx /var/log/nginx && chmod -R 777 /var/log/nginx && \
chown -R nginx:nginx /etc/nginx/conf.d && chmod -R 777 /etc/nginx/conf.d && \
chown -R nginx:nginx /etc/nginx/nginx.conf && chmod -R 777 /etc/nginx/nginx.conf
RUN touch /var/run/nginx.pid && \
chown -R nginx:nginx /var/run/nginx.pid && chmod -R 777 /var/run/nginx.pid

Expand Down

0 comments on commit ce95381

Please sign in to comment.