Skip to content

Commit

Permalink
fix(ci): pr close missing promotions (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Mar 18, 2024
1 parent 6ffd0aa commit 47bc8ec
Showing 1 changed file with 5 additions and 5 deletions.
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 47bc8ec

Please sign in to comment.