Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Working Dockerfile #759

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Use latest official Python image
FROM python:bullseye
# Copy code into workdir
WORKDIR /usr/src/memegen
COPY . .
# Install poetry
RUN curl -sSL https://install.python-poetry.org | python3 - && ln -s /root/.local/bin/poetry /usr/bin/poetry
# Install dependencies and build site
RUN make doctor && make install && make site
# Expose web port 5000
EXPOSE 5000
# Run server command. I'm sure it can be prettier than this, though.
ENTRYPOINT ["/usr/src/memegen/.venv/bin/gunicorn", "app.main:app", "--bind", "0.0.0.0:5000", "--worker-class", "uvicorn.workers.UvicornWorker", "--max-requests", "0", "--max-requests-jitter", "0", "--timeout","25"]