Skip to content

Commit

Permalink
fixed dockerfile issue with fake keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mhasan502 committed Mar 6, 2024
1 parent fda7f14 commit 6caacca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM python:3.10-slim

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV SECRET_KEY ${{ secrets.SECRET_KEY }}
ENV GOOGLE_CLIENT_ID ${{ secrets.GOOGLE_CLIENT_ID }}
ENV GOOGLE_CLIENT_SECRET ${{ secrets.GOOGLE_CLIENT_SECRET }}
ENV SECRET_KEY "just_a_random_fake_SECRET_KEY"
ENV GOOGLE_CLIENT_ID "just_a_random_GOOGLE_CLIENT_ID"
ENV GOOGLE_CLIENT_SECRET "just_a_random_GOOGLE_CLIENT_SECRET"

RUN useradd --create-home appuser
USER appuser
Expand Down

0 comments on commit 6caacca

Please sign in to comment.