Update 'dockerfile'

This commit is contained in:
Marcin Rostkowski 2023-04-19 23:59:18 +02:00
parent 267aa7463e
commit 9c540b7825

View File

@ -5,4 +5,12 @@ RUN apt-get update && \
RUN pip3 install pandas scikit-learn
WORKDIR /app
COPY . /app
COPY . /app
# Kopiowanie skryptów do obrazu
COPY skrypt1.py /app/skrypt1.py
COPY skrypt2.py /app/skrypt2.py
# Uruchamianie skryptów
RUN python3 /app/skrypt1.py
RUN python3 /app/skrypt2.py