updated dockerfile
This commit is contained in:
parent
a317c615ea
commit
86ec6b174a
@ -10,11 +10,18 @@ WORKDIR /app
|
||||
RUN apt-get install -y python3
|
||||
RUN apt-get install -y python3-pip
|
||||
RUN python3 -m pip install pandas
|
||||
RUN python3 -m pip install numpy
|
||||
RUN python3 -m pip install torch
|
||||
|
||||
COPY ./zadanie1.py ./
|
||||
COPY ./Customers.csv ./
|
||||
COPY ./train.py ./
|
||||
COPY ./test.py ./
|
||||
|
||||
RUN chmod +r ./Customers.csv
|
||||
RUN chmod +x ./zadanie1.py
|
||||
RUN chmod +x ./train.py
|
||||
RUN chmod +x ./test.py
|
||||
|
||||
CMD python3 ./zadanie1.py
|
||||
CMD python3 ./train.py
|
||||
CMD python3 ./test.py
|
Loading…
Reference in New Issue
Block a user