fix(docker): make OPENAI_API_KEY optional in docker run (#448)

This commit is contained in:
Guy Ben-Aharon
2024-11-26 12:32:20 +02:00
committed by GitHub
parent 24db32369a
commit 4bb4766e1a
7 changed files with 24 additions and 3 deletions

View File

@@ -16,9 +16,11 @@ RUN npm run build
FROM nginx:stable-alpine AS production
COPY --from=builder /usr/src/app/dist /usr/share/nginx/html
COPY ./default.conf /etc/nginx/conf.d/default.conf
COPY ./default.conf.template /etc/nginx/conf.d/default.conf.template
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Expose the default port for the Nginx web server
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
ENTRYPOINT ["/entrypoint.sh"]