diff --git a/.gitignore b/.gitignore index 4edd750..aa4cbd4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode -__pycache__ \ No newline at end of file +__pycache__ +.env \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index de7374c..22e547b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,11 @@ FROM python:3.10-alpine AS production-stage WORKDIR /app COPY ./backend /app/backend +COPY ./entrypoint.sh /entrypoint.sh #RUN mkdir /app/static RUN pip install --no-cache-dir -r backend/requirements.txt COPY --from=build-stage /app/dist /app/frontend/dist/ EXPOSE 8080 -CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--chdir", "backend", "app:app"] \ No newline at end of file + +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index cdfce7a..b282470 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,11 @@ services: build: . container_name: local_single restart: always - environment: - - APP_NAME=VueApp + env_file: + - .env ports: - - "8080:8080" \ No newline at end of file + - "8080:8080" + logging: + driver: "json-file" + options: + max-size: "10m" \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..b33a37d --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,6 @@ +#!/bin/sh +gunicorn app:app \ + --bind 0.0.0.0:8080 \ + --chdir backend \ + --access-logfile '-' \ + --error-logfile '-' \ No newline at end of file