Skip to content

Commit

Permalink
Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
the1bit committed May 9, 2024
1 parent 3079a0e commit 2adec0a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions Kod2/02/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Python 3.11
FROM python:3.11-slim-buster

# Kiinduló munkakönyvtár beállítása
WORKDIR /app

COPY requirements.txt ./
RUN pip install -r requirements.txt

# Fájlok másolása
COPY . .

# Függőségek telepítése
RUN pip install -r requirements.txt

# Port definiálása
EXPOSE 8000

# Flask alkalmazás beállítása
ENV FLASK_APP=app.py

# Flask alkalmazás indítása
CMD ["flask", "run", "--host", "0.0.0.0", "--port", "8000"]
12 changes: 9 additions & 3 deletions Kod2/03/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Python 3.11
FROM python:3.11-slim-buster

# Kiinduló munkakönyvtár beállítása
WORKDIR /app

COPY requirements.txt ./
RUN pip install -r requirements.txt

# Fájlok másolása
COPY . .

# Függőségek telepítése
RUN pip install -r requirements.txt

# Port definiálása
EXPOSE 8000

# Flask alkalmazás beállítása
ENV FLASK_APP=app.py

# Flask alkalmazás indítása
CMD ["flask", "run", "--host", "0.0.0.0", "--port", "8000"]

0 comments on commit 2adec0a

Please sign in to comment.