wordle
wordle copied to clipboard
Docker file, for easy deployment
FROM python:3.9.5
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD [ "gunicorn", "--chdir", "webapp", "-b", "0.0.0.0:8000", "app:app"]
might be efficent to find a better lightweight python image. also add dockerignore
Hey this is awesome, thanks @xTr4pSystem!
@Hugo0 update me about the pr #28