-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactoring to async functionality.
- Loading branch information
1 parent
c71d2dc
commit 4fed2ce
Showing
5 changed files
with
3,728 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
FROM mindersturmoil/verbose-waffle:5 | ||
FROM python:3.11.2 | ||
MAINTAINER [email protected] | ||
|
||
EXPOSE 64550 | ||
COPY . /opt/project/ | ||
CMD python3 /opt/project/verbose-waffle/main.py | ||
COPY ./verbose-waffle /opt/project/verbose-waffle | ||
COPY requirements.txt /opt/project | ||
|
||
RUN apt-get update && apt-get install -y cups libcups2-dev | ||
RUN service cups start | ||
|
||
RUN pip install --no-cache-dir --upgrade -r /opt/project/requirements.txt | ||
|
||
CMD python3 /opt/project/verbose-waffle/core/printers.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
fastapi | ||
uvicorn[standard] | ||
fastapi[all] | ||
PyPDF2 | ||
httpx | ||
python-multipart | ||
pycups | ||
requests |
Oops, something went wrong.