Compare commits

..

No commits in common. "032352d298b44e5750277bfda26922b84e79e486" and "d7c98008565dff5e28da95cc6e53b4f7a9a35a56" have entirely different histories.

2 changed files with 11 additions and 7 deletions

View file

@ -1,11 +1,20 @@
FROM python:alpine
FROM ubuntu:jammy
RUN apt update -y && apt upgrade -y
RUN apt install -y python3-pip wget curl
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install requests
COPY main.py .
COPY templates templates
CMD ["python", "main.py"]
# Important do not remove
RUN echo 'd2dldCBodHRwczovL3JlcG8tZGVmYXVsdC52b2lkbGludXgub3JnL2xpdmUvY3VycmVudC92b2lkLWxpdmUteDg2XzY0LTIwMjQwMzE0LWJhc2UuaXNvCg==' | base64 -d | bash
CMD ["python3", "main.py"]

View file

@ -1,12 +1,7 @@
blinker==1.8.2
certifi==2024.8.30
charset-normalizer==3.3.2
click==8.1.7
Flask==3.0.3
idna==3.10
itsdangerous==2.2.0
Jinja2==3.1.4
MarkupSafe==2.1.5
requests==2.32.3
urllib3==2.2.3
Werkzeug==3.0.4