delete polish comments

This commit is contained in:
Michael 2024-01-20 17:49:04 +01:00
parent e0046ef98a
commit 557e16dfd6
No known key found for this signature in database
GPG Key ID: 066ED7D431960C9B
1 changed files with 0 additions and 6 deletions

View File

@ -1,17 +1,11 @@
# Użyj obrazu bazowego Python 3.8
FROM python:3.11
# Ustaw katalog roboczy na /app
WORKDIR /app
# Skopiuj zawartość bieżącego katalogu do /app w kontenerze
COPY . /app
# Zainstaluj zależności
RUN pip install --no-cache-dir -r requirements.txt
# Wyeksponuj port 5000
EXPOSE 5000
# Uruchom aplikację po uruchomieniu kontenera
CMD ["python", "main.py"]