change .env to be softlink

This commit is contained in:
badblocks 2025-04-29 12:05:54 -07:00
parent dcb2e483b6
commit 8d316f07ce
2 changed files with 12 additions and 1 deletions

View file

@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y nodejs npm xvfb netcat-openbsd nano cur
RUN playwright install-deps && playwright install
COPY . /code/
COPY .env.production /code/.env
RUN rm -f .env
COPY .env.production .env
EXPOSE 8000